funky-framadate-front/src/app/features/administration/form/form.component.scss

31 lines
464 B
SCSS
Raw Normal View History

2020-11-03 16:13:47 +01:00
@import '../../../../styles/variables';
2020-10-29 18:43:19 +01:00
:host {
input,
textarea {
padding: 0.5em;
border: solid #eee;
2020-11-03 15:44:08 +01:00
width: 90%;
}
.form-field {
display: block;
margin-top: 1em;
}
2020-11-03 16:13:47 +01:00
.form-row {
margin-top: 0.5em;
2020-11-06 12:04:38 +01:00
margin-bottom: 0.25em;
border: solid 1px #ddd;
2020-11-03 16:13:47 +01:00
border-left: solid 3px $primary_color;
padding-left: 1em;
2020-11-06 12:04:38 +01:00
padding-top: 0.5em;
padding-bottom: 0.5em;
2020-11-03 16:13:47 +01:00
}
2020-11-03 15:44:08 +01:00
.fa {
2020-11-06 12:04:38 +01:00
margin-right: 1ch;
&.fa-times,
&.fa-trash {
margin-right: 0;
}
2020-10-29 18:43:19 +01:00
}
}