feat: improve footer
This commit is contained in:
parent
035a08efec
commit
4ea622e251
1 changed files with 11 additions and 2 deletions
|
@ -24,9 +24,18 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
.footerTable {
|
.footerTable {
|
||||||
padding: 20px 0;
|
padding: 20px;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(4, 1fr);
|
@media (max-width: 768px) {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 0;
|
||||||
|
div {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 769px) {
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
}
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
|
|
||||||
div {
|
div {
|
||||||
|
|
Loading…
Reference in a new issue