Files
chrani-bot-tng/bot/modules/webserver/static/lcars/220-screen_adjustments.css

20 lines
643 B
CSS
Raw Normal View History

2025-11-21 07:26:02 +01:00
/* This file contains some nasty style adjustments to accommodate ridiculously small screens.
* I don't care how it looks like there as long as it's usable.
*/
@media only screen and (max-width: 960px) {
:root {
--main_widget_shoulder_width: calc(
var(--main_shoulder_width) / 2
)
}
}
/* this one will remove table-cell restrictions and kinda condense the table-row. This will be a bit untidy in looks,
but more data will be available on very small screens */
@media only screen and (max-width: 960px) {
body > main > div > .widget > main > table.data_table > tbody > tr {
display: unset;
}
}