at the end of the day, it was inevitable

This commit is contained in:
Mo Elzubeir
2022-12-09 08:36:26 -06:00
commit 1218570914
1768 changed files with 887087 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
// Input groups
.input-group {
.input-group-prepend {
div:not([class]) .react-datepicker__input-container,
& + div .react-datepicker__input-container {
.form-control {
@include border-left-radius(0);
@include border-right-radius($input-border-radius !important);
}
}
}
& > div:not([class]) {
position: relative;
flex: 1 1 auto;
width: 1%;
& .react-datepicker__input-container {
.form-control {
@include border-right-radius(0);
}
}
}
}
.input-group {
.input-group-prepend {
& + div {
position: relative;
flex: 1 1 auto;
width: 1%;
}
}
& > .react-datepicker-wrapper {
position: relative;
flex: 1 1 auto;
width: 1%;
& > .react-datepicker__input-container > .form-control {
@include border-right-radius(0);
}
}
}
// Forms Legend
legend {
font-size: $font-size-base;
font-weight: bold;
}
// Headings
.form-heading {
font-size: $font-size-lg;
margin: 0;
color: $primary;
p {
color: $gray-600;
padding: 0.3rem 0 0;
font-size: $font-size-base;
}
}
.custom-select {
-webkit-appearance: none;
-moz-appearance: none;
}