Server IP : 150.95.80.236 / Your IP : 18.221.18.145 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/sass/components/ |
Upload File : |
// // Separator // .separator { display: block; height: 0; border-bottom: 1px solid $border-color; &.separator-dotted { border-bottom-style: dotted; border-bottom-color: $gray-300; } &.separator-dashed { border-bottom-style: dashed; border-bottom-color: $gray-300; } &.separator-content { display: flex; align-items: center; border-bottom: 0; text-align: center; &::before, &::after { content: " "; width: 50%; border-bottom: 1px solid $border-color; } &::before{ margin-right: 1.25rem; } &::after{ margin-left: 1.25rem; } &.separator-dotted { &::before, &::after { border-bottom-style: dotted; border-bottom-color: $gray-300; } } &.separator-dashed { &::before, &::after { border-bottom-style: dashed; border-bottom-color: $gray-300; } } @each $color, $value in $theme-colors { &.border-#{$color}{ &::before, &::after { border-color: $value !important; } } } } }