Files
doneit-web/src/app/shared/popover/request-options/request-options.page.scss
T

67 lines
1.3 KiB
SCSS
Raw Normal View History

2023-07-07 12:03:03 +01:00
@import '~src/function.scss';
2021-09-03 16:20:22 +01:00
.wrapper{
width: 100% !important;
padding-top:20px !important;
padding-bottom:20px !important;
2021-05-27 13:11:10 +01:00
}
.arrow-right{
display: none;
margin-bottom: 20px;
.arrow-right-icon{
width: 37px;
float: right;
2023-07-07 12:03:03 +01:00
font-size: rem(35);
2021-05-27 13:11:10 +01:00
overflow: hidden;
}
}
.buttons{
2021-09-03 16:20:22 +01:00
width: 100% !important;
2021-05-27 13:11:10 +01:00
display: flex;
flex-wrap: wrap;
justify-content: space-around;
2021-09-03 16:20:22 +01:00
margin: 0 auto !important;
2021-05-27 13:11:10 +01:00
}
.solid {
display: none;
width: 90%;
border-top: 1px solid #bbb;
margin: 0 auto !important;
}
.btn-ok, .btn-cancel{
//width: 50% !important;
margin-bottom: 5px !important;
margin-top: 5px !important;
}
@media only screen and (max-width: 800px) {
2021-09-03 16:20:22 +01:00
.container{
width: 100% !important;
}
2021-05-27 13:11:10 +01:00
.btn-ok, .btn-cancel, .btn-delete{
width: 47% !important;
}
}
@media only screen and (min-width: 1024px) {
2021-09-03 16:20:22 +01:00
.container{
width: 100% !important;
}
2021-05-27 13:11:10 +01:00
.arrow-right{
display: flex;
justify-content: flex-end;
}
.btn-cancel{
display: none;
width: 100% !important;
margin-bottom: 10px !important;
}
.btn-delete, .btn-ok{
width: 100% !important;
margin-bottom: 10px !important;
margin-top: 10px !important;
}
/* .solid{
display: block;
} */
2021-09-03 16:20:22 +01:00
}