fanatic/resources/sass/admin/_modules.scss

46 lines
907 B
SCSS
Raw Normal View History

2022-04-23 11:39:07 -07:00
@use 'vars' as *;
@use 'sass:color';
2022-04-23 16:25:16 -07:00
@mixin msg($color) {
background-color: color.scale($color, $lightness: 70%);
border: 1px solid $color;
2022-04-23 11:39:07 -07:00
padding: 10px;
width: 60%;
margin: 10px auto;
2022-04-23 16:25:16 -07:00
}
.success { @include msg($c-green); }
.warning { @include msg($c-yellow); }
2022-04-23 19:31:00 -07:00
.error { @include msg($c-red); }
/* ----------------------------------------------------------------------------- &PAGINATION ---- */
.pagination {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
margin-top: 20px;
a { text-decoration: none; }
}
.pagination__item {
@extend %btn;
margin: 0;
&:not(:last-child) { border-right: none; }
}
.pagination__item--disabled, .pagination__item--active {
@extend .pagination__item;
@extend %disabled;
2022-04-25 19:50:01 -07:00
}
/* ----------------------------------------------------------------------------------- &BTNS ---- */
.btn--table {
@extend %btn;
margin: 0;
2022-04-23 19:31:00 -07:00
}