34 lines
540 B
SCSS
34 lines
540 B
SCSS
.form-field > label {
|
|
font-weight: 500;
|
|
margin-bottom: 5px;
|
|
color: '#888';
|
|
}
|
|
|
|
.capitalize-first::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
input.no-focus:focus {
|
|
outline: none !important;
|
|
border: solid thin transparent !important;
|
|
}
|
|
|
|
.widget-wrapper {
|
|
@apply rounded border bg-white;
|
|
}
|
|
|
|
@layer base {
|
|
img {
|
|
@apply inline-block;
|
|
}
|
|
}
|
|
|
|
|
|
button,
|
|
[type='button'],
|
|
[type='reset'],
|
|
[type='submit'] {
|
|
-webkit-appearance: button; /* 1 */
|
|
background-color: none; /* 2 */
|
|
background-image: none; /* 2 */
|
|
}
|