CSS updates.

This commit is contained in:
Mike Cao 2023-10-02 23:51:26 -07:00
parent 9bb89c7e8b
commit e4c5f42189
22 changed files with 227 additions and 395 deletions

View file

@ -1,12 +1,12 @@
.container {
display: flex;
display: grid;
grid-template-columns: 1fr max-content;
justify-content: space-between;
align-items: center;
padding: 10px 0;
min-height: 90px;
margin-bottom: 20px;
background: var(--base50);
z-index: var(--z-index-above);
min-height: 120px;
padding-bottom: 20px;
}
.actions {
@ -18,8 +18,12 @@
}
@media only screen and (max-width: 1200px) {
.container {
grid-template-columns: 1fr;
}
.actions {
margin-top: 40px;
margin: 20px 0;
}
}
@ -30,6 +34,7 @@
}
.isSticky {
padding: 10px 0;
border-bottom: 1px solid var(--base300);
}
}