// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.
/* Styles for FormControl */
// Styles applied to the root element.
.ZuFormControl-root {
display: inline-flex;
flex-direction: column;
position: relative;
// Reset fieldset default style.
min-width: 0;
padding: 0;
margin: 0;
border: 0;
vertical-align: top; // Fix alignment issue on Safari.
// Styles applied to the root element if margin="normal".
&.ZuFormControl-marginNormal {
margin-top: 16px;
margin-bottom: 8px;
}
// Styles applied to the root element if margin="dense".
&.ZuFormControl-marginDense {
margin-top: 8px;
margin-bottom: 4px;
}
// Styles applied to the root element if fullWidth={true}.
&.ZuFormControl-fullWidth {
width: 100%;
}
}