mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
58 lines
No EOL
914 B
SCSS
58 lines
No EOL
914 B
SCSS
// styles for Storage config section
|
|
|
|
|
|
.edit-storage-container {
|
|
padding: 1em;
|
|
.form-fields {
|
|
display: none;
|
|
margin-bottom: 1em;
|
|
}
|
|
&.enabled {
|
|
.form-fields {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.button-container {
|
|
margin: 2em 0 1em 0;
|
|
}
|
|
.advanced-section {
|
|
margin: 1em 0;
|
|
}
|
|
}
|
|
|
|
|
|
.edit-server-details-container {
|
|
|
|
// Do something special for the stream key field
|
|
.field-streamkey-container {
|
|
margin-bottom: 1.5em;
|
|
.field-tip {
|
|
color: var(--ant-warning);
|
|
}
|
|
.left-side {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.textfield-with-submit-container {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.streamkey-actions {
|
|
white-space: nowrap;
|
|
button {
|
|
margin: .25em;
|
|
}
|
|
@media (max-width: 800px) {
|
|
margin-top: 2em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.advanced-settings {
|
|
max-width: 800px;
|
|
}
|
|
|
|
} |