summaryrefslogtreecommitdiffstats
path: root/assets/sass/@primer/css/avatars/circle-badge.scss
diff options
context:
space:
mode:
authoramzrk22020-04-14 20:58:19 +0800
committeramzrk22020-04-14 20:58:19 +0800
commitbaf7534870460015c194281ad98e1fef99911ef1 (patch)
treecc424e273de1953917a06e5536b2fc527ead78a3 /assets/sass/@primer/css/avatars/circle-badge.scss
parentf01d08490b3f5f35eca026792d0efe239bda4ff9 (diff)
downloadhugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.tar.gz
hugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.tar.bz2
hugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.zip
Remove redundant Primer CSS
Diffstat (limited to 'assets/sass/@primer/css/avatars/circle-badge.scss')
-rw-r--r--assets/sass/@primer/css/avatars/circle-badge.scss55
1 files changed, 0 insertions, 55 deletions
diff --git a/assets/sass/@primer/css/avatars/circle-badge.scss b/assets/sass/@primer/css/avatars/circle-badge.scss
deleted file mode 100644
index 8553b3f..0000000
--- a/assets/sass/@primer/css/avatars/circle-badge.scss
+++ /dev/null
@@ -1,55 +0,0 @@
-// Circle badge icon with drop shadow for icons and logos
-
-.CircleBadge {
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: $bg-white;
- border-radius: 50%;
- box-shadow: $box-shadow-medium;
-}
-
-.CircleBadge-icon {
- max-width: 60% !important;
- height: auto !important;
- max-height: 55% !important;
-}
-
-// Small badge
-.CircleBadge--small {
- width: 56px;
- height: 56px;
-}
-
-// Medium badge
-.CircleBadge--medium {
- width: 96px;
- height: 96px;
-}
-
-// Large badge
-.CircleBadge--large {
- width: 128px;
- height: 128px;
-}
-
-// Dashed line that connects badges..
-// Wrap around 2 or more badges to create a horizonal line:
-
-.DashedConnection {
- position: relative;
-
- &::before {
- position: absolute;
- top: 50%;
- left: 0;
- width: 100%;
- content: "";
- // stylelint-disable-next-line primer/borders
- border-bottom: 2px dashed $border-gray;
- }
-
- .CircleBadge {
- position: relative;
- }
-}