integarting admin dashboard

This commit is contained in:
UronShrestha
2024-07-12 12:51:02 +05:45
parent 2510de390a
commit 1550ab5d30
1758 changed files with 313760 additions and 10 deletions

View File

@ -0,0 +1,37 @@
/* Modals */
.modal{
.modal-dialog{
margin-top: 100px;
.modal-content{
.modal-header{
padding: $modal-header-padding-y $modal-header-padding-x;
.close{
span{
font-size: 20px;
font-weight: 400;
color: #6a6a6a;
}
}
}
.modal-body{
padding: $modal-body-padding-y $modal-body-padding-x;
}
.modal-footer{
padding: $modal-footer-padding-y $modal-footer-padding-x;
@media(max-width: 400px) {
padding-left: .25rem;
padding-right: .25rem;
flex-direction: column;
>:not(:last-child) {
margin-right: 0;
margin-bottom: .7rem;
}
>:not(:first-child) {
margin-left: 0;
}
}
}
}
}
}