123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @import "@/uni_modules/uni-scss/variables.scss";
- @import "animate.css/animate.css";
- $defaultColor: #49b856;
- $textColorRed: #ff3b53;
- @mixin numbersAndLettersNoWrap {
- word-break: break-all;
- }
- @mixin flex(
- $justifyContent: flex-start,
- $alignItem: stretch,
- $flexDirection: row
- ) {
- display: flex;
- justify-content: $justifyContent;
- align-items: $alignItem;
- flex-direction: $flexDirection;
- }
- @mixin btn_background {
- background-image: linear-gradient(90deg,#72c172,#3bb197);
- }
- .red {
- color: $textColorRed;
- }
- .green {
- color: $defaultColor;
- }
- .uni-label-pointer{
- @include flex;
- }
- uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
- border-color: $defaultColor;
- }
- .uni-checkbox-input-checked{
- color: $defaultColor !important;
- }
|