yosup/css/responsive.css
Thomas Mathews a78d80d118 This repo now only contains the web app.
I did this because they are 2 separate concerns and I have diverged
so far from the original repo. I didn't start a new repo because it
contains valuable history of all the people who contributed to it.

Additionally if there is an issue with this we can revert, but I
rather not. Forks are forks.
2022-12-22 11:07:35 -08:00

36 lines
654 B
CSS

@media (max-width: 800px){
:root {
/* TODO font size should not be controlled by CSS:
* Instead I would prefer user settings. The main reason is the font is
* too small on my desktop when I use the app in column mode.
*/
--fsSmall: 10px;
--fsNormal: 14px;
--fsReduced: 12px;
--fsEnlarged: 16px;
}
/* Utility */
.vertical-hide {
display: none !important;
}
/* Application Framework */
#gnav {
display: initial;
}
#view {
flex: 1;
width: initial;
border-right: none;
}
#content header > label {
padding: 12px;
}
/* Event */
.pfp { /* TODO sync up with userpic */
width: 44px;
height: 44px;
}
}