| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Fonts
- //@import url('https://fonts.bunny.net/css?family=Nunito');
- // Variables
- @import 'variables';
- // Bootstrap
- @import 'bootstrap/scss/bootstrap';
- @import "bootstrap-icons/font/bootstrap-icons.css";
- .invalid-feedback {
- display: block !important;
- }
- .alerts{
- position: absolute;
- right: 0;
- top: 0;
- opacity: 0.8;
- z-index: 999;
- div {
- padding-left: 3rem;
- padding-right: 3rem;
- }
- }
- .tbl {
- .row:nth-child(even) {
- background-color: #f7f7f7;
- }
- .tbl-item {
- cursor: pointer;
- }
- .tbl-item:hover {
- background-color: #fff8ca;
- }
- }
- .pagination .text-muted {
- padding-right: 1rem;
- }
|