Android_Retail/src/Styles/BookingScreen/Components/UtillComponents/BSNavBarDragItems.scss

92 lines
1.4 KiB
SCSS

.DragChooseBTNs {
display: flex;
align-items: center;
padding: 10px;
background-color: #f4f4f4;
border-radius: 6px;
justify-content: center;
width: 100%;
button {
padding: 6px 14px;
font-family: "Poppins";
border: none;
outline: none;
border-radius: 5px;
background: white;
cursor: pointer;
transition: all 0.2s ease;
flex-grow: 1;
&.selected {
background-color: rgb(63, 160, 14);
color: #fff;
border-color: rgb(63, 160, 14);
}
&:hover:not(.selected) {
background-color: rgb(225, 252, 212);
}
}
}
.DragClose-BTN {
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
font-family: "Poppins";
h3 {
font-weight: 500;
font-size: 16px;
}
}
.addfavlist-master {
width: 40vw;
.fav-close {
color: #f00000 !important;
&:hover {
color: #f00000 !important;
}
}
}
.favsbmtbtn {
bottom: 60px !important;
}
@media (max-width: 1000px) {
.addfavlist-master {
width: 40vw;
right: 4rem;
left: auto !important;
top: 0;
}
.favsbmtbtn {
right: 5rem;
bottom: 60px;
}
}
@media (max-width: 768px) {
.addfavlist-master {
position: fixed;
left: 0;
top: 9rem;
width: 100vw !important;
right: 0;
padding: 1rem 1rem !important;
}
.favsbmtbtn {
right: 5rem;
}
.AddFavItemListCont {
height: 30vh;
padding-bottom: 4rem;
}
}