hensei-web/components/party/EditPartyModal/index.module.scss
Justin Edmund 7db02886fa Update EditPartyModal
* 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
2023-07-02 02:30:59 -07:00

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);
}
}