26 lines
540 B
SCSS
Raw Normal View History

2024-09-03 14:38:34 -07:00
// Fonts
@import url('https://fonts.bunny.net/css?family=Nunito');
// Variables
@import 'variables';
// Bootstrap
2024-09-03 15:15:57 -07:00
$body-bg: #fff;
$body-color: #111;
$table-striped-bg: #fafafa;
2024-09-03 14:38:34 -07:00
@import 'bootstrap/scss/bootstrap';
2024-09-03 15:15:57 -07:00
@import 'bootstrap-icons/font/bootstrap-icons.css';
2024-09-09 15:29:31 -07:00
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
display: none;
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
-moz-appearance: textfield; /* Firefox */
}