mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
143 lines
2.5 KiB
Plaintext
143 lines
2.5 KiB
Plaintext
.streamingControlPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
height: fit-content;
|
|
|
|
padding: 15px;
|
|
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 12px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
.preview {
|
|
height: 100%;
|
|
width: 300px;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
border-radius: 12px;
|
|
}
|
|
|
|
margin-right: 40px;
|
|
}
|
|
|
|
.details {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
|
|
padding: 20px 0;
|
|
width: 100%;
|
|
|
|
.status {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.config {
|
|
display: flex;
|
|
|
|
padding: 0 40px;
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
code {
|
|
padding: 5px 8px;
|
|
font-size: 1rem;
|
|
|
|
background-color: var(--background-color-accent);
|
|
color: var(--text-color);
|
|
|
|
border-radius: 8px;
|
|
|
|
font-family: "DM Mono", monospace;
|
|
|
|
user-select: all;
|
|
}
|
|
|
|
.panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
margin-right: 50px;
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
margin: 10px 20px 20px 0;
|
|
|
|
width: 100%;
|
|
|
|
.title {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.streamingKeyString {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
color: var(--text-color);
|
|
|
|
svg {
|
|
font-size: 1.5rem;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
div {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
.streamInfoEditor {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
.value {
|
|
margin-top: 5px;
|
|
margin-left: 20px;
|
|
|
|
.ant-select {
|
|
min-width: 200px;
|
|
}
|
|
}
|
|
}
|
|
} |