a122ee6c42
* tweaks to offline state in admin viewers page If stream is offline, hide current viewers statistic and viewers table. Also, change wording for describing max viewers. * take out ant dark stylesheet, organize ant color overrides * remove ant dark css; cleanup ant overrides; format public-detail page * combine toggleswitch component style with textfield so layout can be shared * fix toggleswitch status message placement * - update styles for modals, collapses - move reset dir into its own component - assorted style cleanups ans consistencies * hide entire advanced section for resetyp if no yp * temp adjustments to video modal * temp comment out toggle switch use for later' * address PR comments * lint * update type * allow warnings during lint Co-authored-by: nebunez <uoj2y7wak869@opayq.net>
65 lines
1.3 KiB
SCSS
65 lines
1.3 KiB
SCSS
// dealiing with some general layout on the public details page
|
|
|
|
.config-public-details-page {
|
|
width: 100%;
|
|
.top-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
|
|
@media (max-width: 1200px) {
|
|
flex-wrap: wrap;
|
|
.social-items-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
flex-wrap: nowrap;
|
|
margin: 1em 0;
|
|
width: 100%;
|
|
max-width: none;
|
|
.tags-module {
|
|
margin-right: 1em;
|
|
}
|
|
.form-module {
|
|
max-width: none;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
flex-direction: column;
|
|
.form-module {
|
|
width: 100%;
|
|
}
|
|
.tags-module {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.instance-details-container {
|
|
width: 100%;
|
|
}
|
|
.social-items-container {
|
|
background-color: var(--container-bg-color-alt);
|
|
padding: 0 .75em;
|
|
margin-left: 1em;
|
|
max-width: 450px;
|
|
.form-module {
|
|
background-color: #000;
|
|
}
|
|
|
|
.social-handles-container {
|
|
min-width: 350px;
|
|
}
|
|
}
|
|
.instance-details-container,
|
|
.page-content-module {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.field-summary {
|
|
textarea {
|
|
height: 6em !important;
|
|
}
|
|
}
|
|
} |