Files
doneit-web/src/app/modals/chat-options-features/chat-options-features.page.scss
T

49 lines
902 B
SCSS
Raw Normal View History

2021-08-18 16:40:58 +01:00
.container{
--padding-top:20px !important;
--padding-bottom:20px !important;
--padding-start:20px !important;
--padding-end:20px !important;
}
.arrow-right{
display: none;
margin-bottom: 20px;
.arrow-right-icon{
width: 37px;
float: right;
font-size: 35px;
overflow: hidden;
}
}
.buttons{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.btn-ok, .btn-cancel, .btn-delete{
margin-bottom: 10px !important;
}
}
.solid {
display: none;
width: 90%;
border-top: 1px solid #bbb;
margin: 0 auto !important;
margin-bottom: 10px;
}
2021-08-20 14:45:44 +01:00
@media only screen and (min-width: 701px) {
2021-08-18 16:40:58 +01:00
.arrow-right{
display: flex;
justify-content: flex-end;
}
.btn-cancel{
width: 100% !important;
}
.btn-cancel:hover{
background-color: #42b9fe;
2021-08-20 11:58:28 +01:00
color: #fff !important;
2021-08-18 16:40:58 +01:00
}
.mobile-only{
display: none !important;
}
}