* Directly adds shadow code from DialogHeader since this dialog behaves slightly differently. In the future, we'd like to reconcile this so that the code only appears once * Changes rendering functions to be properties * Add DialogHeader and DialogFooter * Implement Textarea component instead of raw textarea * Removed unused code
39 lines
623 B
SCSS
39 lines
623 B
SCSS
.segmentedControlWrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: $unit 0;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
gap: $unit-2x;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
|
|
.fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
gap: $unit;
|
|
padding: 0 $unit-4x;
|
|
overflow: hidden;
|
|
|
|
&.scrollable {
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.extraNotice {
|
|
background: var(--extra-purple-bg);
|
|
border-radius: $input-corner;
|
|
font-weight: $medium;
|
|
padding: $unit-2x;
|
|
|
|
p {
|
|
color: var(--extra-purple-dark-text);
|
|
}
|
|
}
|