added icons

This commit is contained in:
sairaj mote 2023-12-12 01:59:08 +05:30
parent 1061530536
commit 7e4995e6a1
4 changed files with 58 additions and 21 deletions

View File

@ -855,6 +855,9 @@ theme-toggle {
border-radius: 1rem;
}
.dapp-card__icon {
display: flex;
align-items: center;
justify-content: center;
height: 4rem;
aspect-ratio: 1/1;
border-radius: 0.5rem;
@ -862,6 +865,10 @@ theme-toggle {
object-fit: cover;
background-color: rgba(var(--text-color), 0.06);
}
.dapp-card__icon .icon {
height: 2rem;
width: 2rem;
}
.dapp-card__category {
font-size: 0.8rem;
font-weight: 500;
@ -942,6 +949,15 @@ theme-toggle {
.hide-on-small {
display: none;
}
#list_header > :nth-child(1) {
order: 1;
}
#list_header > :nth-child(2) {
order: 3;
}
#list_header > :nth-child(3) {
order: 2;
}
#category_selector {
margin-left: -1rem;
max-width: initial;

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -797,11 +797,18 @@ theme-toggle {
background-color: rgba(var(--text-color), 0.02);
border-radius: 1rem;
&__icon {
display: flex;
align-items: center;
justify-content: center;
height: 4rem;
aspect-ratio: 1/1;
border-radius: 0.5rem;
object-fit: cover;
background-color: rgba(var(--text-color), 0.06);
.icon {
height: 2rem;
width: 2rem;
}
}
&__category {
font-size: 0.8rem;
@ -885,6 +892,18 @@ theme-toggle {
&[data-page="dapps"] {
}
}
#list_header {
& > :nth-child(1) {
order: 1;
}
& > :nth-child(2) {
order: 3;
}
& > :nth-child(3) {
order: 2;
}
}
#category_selector {
margin-left: -1rem;
max-width: initial;

File diff suppressed because one or more lines are too long