41 lines
902 B
SCSS
41 lines
902 B
SCSS
@charset "UTF-8";
|
|
|
|
//
|
|
// @copyright 2020 opencart.cn - All Rights Reserved
|
|
// @link http://www.guangdawangluo.com
|
|
// @author Sam Chen <sam.chen@opencart.cn>
|
|
// @created 2021-08-24 14:38:09
|
|
// @modified 2021-08-24 15:07:05
|
|
//
|
|
|
|
$primary: #fd560f;
|
|
$border-radius: 0;
|
|
$form-check-input-width: 1.2em;
|
|
$form-switch-width: 2.6em;
|
|
$link-decoration: none;
|
|
$link-color: #1890ff;
|
|
$form-floating-input-padding-t: 1.325rem;
|
|
$form-floating-input-padding-b: .625rem;
|
|
$form-floating-padding-y: .8rem;
|
|
$form-floating-height: 50px;
|
|
|
|
@import './bootstrap-icons';
|
|
@import 'node_modules/bootstrap-5.1.3/scss/bootstrap';
|
|
// @import 'node_modules/bootstrap/scss/bootstrap';
|
|
|
|
.table > :not(:first-child) {
|
|
border-top: none;
|
|
}
|
|
|
|
.btn-primary {
|
|
color: #fff;
|
|
}
|
|
|
|
.form-switch {
|
|
margin-bottom: 0;
|
|
|
|
.form-check-input {
|
|
width: 3em;
|
|
height: 1.6em;
|
|
}
|
|
} |