react-code-dataset
/
argon-dashboard-react
/src
/assets
/scss
/argon-dashboard
/custom
/icons
/_icon-shape.scss
| // | |
| // Icon shape | |
| // | |
| .icon-shape { | |
| padding: 12px; | |
| text-align: center; | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| border-radius: 50%; | |
| i, svg { | |
| font-size: 1.25rem; | |
| } | |
| &.icon-lg { | |
| i, svg { | |
| font-size: 1.625rem; | |
| } | |
| } | |
| &.icon-sm { | |
| i, svg { | |
| font-size: .875rem; | |
| } | |
| } | |
| svg { | |
| width: 30px; | |
| height: 30px; | |
| } | |
| } | |
| @each $color, $value in $theme-colors { | |
| .icon-shape-#{$color} { | |
| @include icon-shape-variant(theme-color($color)); | |
| } | |
| } | |