HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/manage/public_html/wwwroot/styles/scss/utilities/_borders.scss
// Borders adjustments
.border         { border: 1px solid $border-color !important; }
.border-top     { border-top: 1px solid $border-color !important; }
.border-right   { border-right: 1px solid $border-color !important; }
.border-bottom  { border-bottom: 1px solid $border-color !important; }
.border-left    { border-left: 1px solid $border-color !important; }

// Border radius

.rounded {
  border-radius: 5px !important;
}

.rounded-top {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

.rounded-right {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-left {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

// Accent color border variation
.border-accent {
  border-color: $accent-color !important;
}