personal-website/assets/style.mobile.css

25 lines
472 B
CSS
Raw Normal View History

2024-03-16 04:04:38 -05:00
@media screen and (max-width: 767px) {
2024-03-16 05:03:32 -05:00
body>div {
2024-03-16 04:04:38 -05:00
width: 100% !important;
}
2024-03-16 05:03:32 -05:00
body>div>div#inner {
padding: 0.5em !important;
}
body>#arrows {
display: flex !important;
width: 100% !important;
position: fixed;
bottom: 0;
right: 0;
}
body>#arrows>div {
width: 50%;
text-align: center;
background-color: black;
color: white;
cursor: pointer;
2024-03-16 04:04:38 -05:00
}
}