Beautiful Design App

I am trying to do something similar but for 20 emojis, representing 20 metrics. Is it possible to have 4 rows of 5?
:card_index:
:gear:
:sunglasses:
:magnet:
:chart:
:beach_umbrella:
:curry:
:sunny:
:droplet:
:recycle:
:sunrise_over_mountains:
:building_construction:
:metro:
:baby_bottle:
:herb:
:shrimp:
:national_park:
:sailboat:
:school:
:earth_americas:
or is that way too many? thank you for your helpโ€ฆ!

2 Likes

Do you mean in choice components? Iโ€™m sure we can do that. What color for the background of the chosen icon do you want?

2 Likes

Here you go.

Copyable app: https://tdconcepts.glideapp.io/

4 Likes

:confused:

1 Like

Sorry, hereโ€™s the code.

<pre><span><style>

[id*='screenScrollView'] >div >div .current {
color: white !important;
background-color: white;
border: 5px solid green;
}

[data-test="app-inline-picker"]{
padding: 2px 0px 12px 0px;
height: 60px;
justify-content: center;
background: transparent;
}

[data-test="app-inline-picker-item"] {
background: white;
border: 1px solid black;
color: white;
border-radius: 50%;
margin: 0 7px;
max-width: 50px;
}

[data-test="app-inline-picker-item"] >div {
background-color: transparent !important;
}
5 Likes

Thank you!

2 Likes

canโ€™t thank you enoughโ€ฆ much appreciated!

3 Likes

Hi Gliders !
Iโ€™m working on this :point_down:t4:
Tell me what you think about it !

12 Likes

looks great

2 Likes

love it

2 Likes

wow this is very good! I love the people illustrations (thatโ€™s good, coming from an illustrator)

2 Likes

Hi Gliders

Please can anyone assist me with CSS to change the colour of the check icon in my app to green as it picks the app colour theme?

Thanks

Check Icon1

Check Icon2

1 Like
<pre><span><style>

[data-test="list-item"] >div >div >svg {
fill: green;
}

I was not able to change the โ€œringโ€ color though.

7 Likes

Beautiful!!! Works just fine. I truly appreciate

2 Likes

:upside_down_face:donโ€™t work for me

1 Like

These components have had a rework about some weeks ago (so structure of code is changed) and to be honest I would not use a background along those entries now. It looks more beautiful to me.

1 Like

But if you really want this hereโ€™s a quick draft.

6 Likes

THANKS BRO :slightly_smiling_face:

1 Like

<pre><span><style>

[data-test="app-button-view"] {
background-color: transparent !important;
border: 1px solid transparent !important;
margin: 10px 90px;
color: #E50914 !important;
border-color: #E50914 !important;
letter-spacing: 4px;
}

[data-test="app-button-view"]:hover {
color: #fff !important;
background-color: #E50914 !important;
border-color: #E50914 !important;
box-shadow: 0 0 10px #E50914, 0 0 40px #E50914, 0 0 80px #E50914;
}
2 Likes

Oh wow awesome. can you share or point me to @Jeff_Hager 's code please! I want to show a calendar that can visually show if user has completed the task for that day.