mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 23:20:58 -05:00
fix(home): fixed grid on home screen
This commit is contained in:
parent
716edb3318
commit
e20c3ee518
1 changed files with 7 additions and 9 deletions
|
@ -26,16 +26,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
// grid-template-columns: repeat(2, 300px);
|
|
||||||
// grid-template-columns: 300px 300px;
|
|
||||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
||||||
grid-column: span 2;
|
|
||||||
gap: 16px;
|
|
||||||
//margin: auto;
|
|
||||||
display: grid;
|
display: grid;
|
||||||
width: fit-content;
|
grid-template-columns: repeat(2, 1fr);
|
||||||
align-items: stretch;
|
gap: 16px;
|
||||||
flex-direction: column;
|
max-width: 650px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -49,6 +43,10 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
grid-template-columns: repeat(1, 1fr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue