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โ€ฆ!

1 Like

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?

1 Like

Here you go.

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

3 Likes

:confused:

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;
}
4 Likes

Thank you!

1 Like

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

2 Likes

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

11 Likes

looks great

1 Like

love it

1 Like

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

1 Like

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

<pre><span><style>

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

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

6 Likes

Beautiful!!! Works just fine. I truly appreciate

1 Like

:upside_down_face:donโ€™t work for me

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.

5 Likes

THANKS BRO :slightly_smiling_face:

<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;
}
1 Like

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.