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

41 lines
596 B
SCSS
Raw Normal View History

2021-11-30 11:17:44 +01:00
// small screens
2021-12-14 11:22:23 +01:00
@media (min-width: 380px) {
2021-11-30 11:17:44 +01:00
.feedback-container {
//position: fixed;
2021-11-30 11:17:44 +01:00
}
2021-12-14 11:22:23 +01:00
.p-datepicker {
.p-datepicker-calendar {
td {
width: $cell-size-desktop;
}
td span,
.p-ripple {
width: $cell-size-desktop;
height: $cell-size-desktop;
}
}
}
2021-11-30 11:17:44 +01:00
}
// wide screen like desktop
2020-04-21 10:50:26 +02:00
@media (min-width: $widescreen) {
2021-12-13 14:26:36 +01:00
.step {
padding: 6rem 0;
2021-12-13 14:26:36 +01:00
}
2020-04-21 10:50:26 +02:00
.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
}
}
}