45 lines
679 B
SCSS
45 lines
679 B
SCSS
|
|
|
|
.config-public-details-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
|
|
.text-fields {
|
|
margin-right: 1rem;
|
|
}
|
|
}
|
|
.textfield-container {
|
|
// width: 28rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
justify-content: flex-end;
|
|
position: relative;
|
|
}
|
|
|
|
.textfield {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
|
|
.field {
|
|
width: 18rem;
|
|
|
|
}
|
|
.info {
|
|
margin-right: .75rem;
|
|
}
|
|
.ant-form-item-label label {
|
|
font-weight: bold;
|
|
color: var(--owncast-purple);
|
|
}
|
|
.ant-form-item-explain {
|
|
width: 70%;
|
|
}
|
|
}
|
|
.submit-button {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 1em;
|
|
} |