Files
kupshop/admin/static/scss/base/_helper-classes.scss
2025-08-02 16:30:27 +02:00

177 lines
1.9 KiB
SCSS

.m-b-0 {
margin-bottom: 0;
}
.m-b-1 {
margin-bottom: 1rem;
}
.m-b-2 {
margin-bottom: 1.5rem;
}
.m-b-3 {
margin-bottom: 3rem;
}
.m-b-4 {
margin-bottom: 4rem;
}
.m-t-0 {
margin-top: 0;
}
.m-t-1 {
margin-top: 1rem;
}
.m-t-2 {
margin-top: 1.5rem;
}
.m-t-3 {
margin-top: 3rem;
}
.m-t-4 {
margin-top: 4rem;
}
.m-l-auto {
margin-left: auto;
}
.m-l-1 {
margin-left: .5rem;
}
.m-l-2 {
margin-left: 1rem;
}
.m-r-1 {
margin-right: .5rem !important;
}
.m-r-2 {
margin-right: 1rem;
}
.m-x-0 {
margin-right: 0;
margin-left: 0;
}
.p-b-0 {
padding-bottom: 0 !important;
}
.flex-grow {
flex-grow: 1;
}
.w-max {
width: max-content;
}
.justify-center {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.align-center {
align-items: center;
}
.status-success {
color: $success;
}
.status-warning {
color: $warning;
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.no-margin {
margin: 0;
}
.d-flex {
display: flex;
}
.gap-1 {
gap: $gap-width;
}
.justify-content-start {
justify-content: flex-start;
}
.justify-content-end {
justify-content: flex-end;
}
.justify-content-center {
justify-content: center;
}
.justify-content-between {
justify-content: space-between;
}
.justify-content-around {
justify-content: space-around;
}
.align-items-start {
align-items: flex-start;
}
.align-items-end {
align-items: flex-end;
}
.align-items-center {
align-items: center;
}
.align-items-baseline {
align-items: baseline;
}
.align-items-stretch {
align-items: stretch;
}
/** Disable animation for panel */
.no-transition {
transition: none !important;
}
.fc {
display: inline-block;
line-height: .8em;
&::before {
vertical-align: middle;
}
}
.nowrap {
white-space: nowrap;
}
.flex-wrap {
flex-wrap: wrap;
}