Files
OpenMediaCenter/src/pages/SettingsPage/GeneralSettings.module.css
Lukas Heiligenbrunner c5d231d9f2 add style for actor tiles
render actors got from backend
backend test code to get actors
2020-12-11 18:23:13 +00:00

32 lines
514 B
CSS

.GeneralForm {
margin-top: 55px;
width: 60%;
}
.mediacenternameform {
margin-top: 25px;
width: 40%;
}
.infoheader {
display: flex;
flex-wrap: wrap;
}
.footer {
bottom: 3px;
color: white;
opacity: 0.8;
position: fixed;
right: 0;
width: 110px;
}
/* On screens that are 722px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 722px) {
.infoheader {
flex-direction: column;
}
}