Mobile Organized Content #79

Merged
w25tran merged 53 commits from feat/organized-content into main 2021-08-27 15:18:56 -04:00
1 changed files with 2 additions and 4 deletions
Showing only changes of commit 217b62e69a - Show all commits

View File

@ -119,11 +119,9 @@
}
@media only screen and (max-width: calc(768rem / 16)) {
.burger {
display: flex;
}
.burger {
display: flex;
position: fixed;
border: none;
bottom: calc(32rem / 16);
@ -134,7 +132,7 @@
z-index: 10;
background: var(--light-blue-2);
border-radius: calc(5rem / 16);
transition: transform 0.6s ease-in-out;
transition: transform 0.3s ease-in-out;
transform: translateY(calc(94rem / 16));
padding: calc(11rem / 16) calc(9rem / 16);
w25tran marked this conversation as resolved
Review

0.3s instead? 0.6 feels very slow

0.3s instead? 0.6 feels very slow
}