funky-framadate-front/src/styles/partials/_responsive.scss

25 lines
374 B
SCSS
Raw Normal View History

2021-11-30 11:17:44 +01:00
// small screens
@media (min-width: 600px) {
.feedback-container {
//position: fixed;
2021-11-30 11:17:44 +01:00
}
}
// wide screen like desktop
2020-04-21 10:50:26 +02:00
@media (min-width: $widescreen) {
.date-choice > input:first-of-type {
2021-05-20 14:11:30 +02:00
width: 75%;
2020-04-21 10:50:26 +02:00
}
.date-choice .btn--primary,
.several-times {
margin-left: 1rem;
display: inline-block;
}
.time-choice {
2021-11-17 15:36:45 +01:00
padding: 1em;
2021-11-30 11:17:44 +01:00
2020-04-21 10:50:26 +02:00
input {
2021-05-20 14:11:30 +02:00
width: 80%;
2020-04-21 10:50:26 +02:00
}
}
}