Quiz_dashboard/src/Components/ValidationField/utils/ValidationField.scss
karimaldeen 398d1e8f07 format
2024-09-10 10:20:21 +03:00

68 lines
1.0 KiB
SCSS

.LabelWithIcon {
display: flex;
width: 100%;
justify-content: space-between;
}
.ValidationField {
margin-bottom: 10px;
position: relative;
min-height: 80px;
padding-inline: 20px;
> * {
width: 100% !important;
min-width: 150px;
}
.text,
.ant-form-item {
margin-bottom: 7px !important;
> span {
color: transparent;
}
}
}
//// upload
.ant-upload-select {
width: 100%;
}
.ant-btn-default {
padding: 7px 11px;
height: var(--fieldHeight);
display: flex;
justify-content: center;
align-items: center;
}
//// number input
///
.ant-input-number-affix-wrapper-lg {
width: 100%;
}
.ValidationFieldCheckbox {
// background-color: red;
}
/// input hight
.ant-form-item-control-input-content {
height: var(--fieldHeight);
}
//// date picker
.ant-picker-large {
height: var(--fieldHeight);
}
/// text area
///
.ValidationFieldTextArea {
.ant-form-item-control-input-content {
min-height: 120px;
}
}
.ant-input-textarea-affix-wrapper.ant-input-affix-wrapper {
height: 120px;
}