mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 17:21:14 -05:00
22 lines
383 B
SCSS
22 lines
383 B
SCSS
/*
|
|
* Styles for the Row component used by formsy-react-components
|
|
* Should be imported for each component that extends one of
|
|
* the formsy-react-components
|
|
*/
|
|
|
|
.row {
|
|
.required-symbol {
|
|
display: none;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
margin-bottom: .75rem;
|
|
}
|
|
|
|
&.no-label {
|
|
label {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|