@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
72 lines (54 loc) • 1.09 kB
CSS
.border {
border: var(--border) ;
}
.border-top {
border-top: var(--border) ;
}
.border-bottom {
border-bottom: var(--border) ;
}
.border-right {
border-right: var(--border) ;
}
.border-left {
border-left: var(--border) ;
}
.border-0 {
border: 0 ;
}
.border-top-0 {
border-top: 0 ;
}
.border-right-0 {
border-right: 0 ;
}
.border-bottom-0 {
border-bottom: 0 ;
}
.border-left-0 {
border-left: 0 ;
}
.rounded-2-5 {
border-radius: var(--border-radius-2-5) ;
}
.rounded-05 {
border-radius: var(--border-radius-05) ;
}
.rounded-10 {
border-radius: var(--border-radius-10) ;
}
.rounded-15 {
border-radius: var(--border-radius-15) ;
}
.rounded-20 {
border-radius: var(--border-radius-20) ;
}
.rounded-30 {
border-radius: var(--border-radius-30) ;
}
.rounded-40 {
border-radius: var(--border-radius-40) ;
}
.rounded-full {
border-radius: var(--border-radius-full) ;
}