mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00: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 {
|
||||
// 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;
|
||||
width: fit-content;
|
||||
align-items: stretch;
|
||||
flex-direction: column;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 16px;
|
||||
max-width: 650px;
|
||||
margin-bottom: 20px;
|
||||
|
||||
a {
|
||||
|
@ -49,6 +43,10 @@
|
|||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue