From 4c1a5191da873d4b445e8c7e34aa70a62d562447 Mon Sep 17 00:00:00 2001 From: xavijam Date: Tue, 3 May 2016 20:10:28 +0200 Subject: [PATCH] Remove carousel used for editor --- src/scss/cdb-components/carousel.scss | 51 --------------------------- 1 file changed, 51 deletions(-) delete mode 100644 src/scss/cdb-components/carousel.scss diff --git a/src/scss/cdb-components/carousel.scss b/src/scss/cdb-components/carousel.scss deleted file mode 100644 index 7342266..0000000 --- a/src/scss/cdb-components/carousel.scss +++ /dev/null @@ -1,51 +0,0 @@ -// Carousel styles -// ---------------------------------------------- - -/* SG -# Carousel - -``` -
- -
-``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - -.CDB-Carousel { - @include display-flex(); - @include justify-content(flex-start); - width: 100%; -} -.CDB-CarouselItem { - @include display-flex(); - @include align-items(center); - @include justify-content(center); - width: $baseSize * 11; - height: $baseSize * 7; - margin-right: 8px; - border: 1px solid $cSecondaryLine; - border-radius: 4px; - background: $cThirdBackground; - box-sizing: border-box; - - &:last-child { - margin-right: 0; - } - &:hover { - border: 1px solid $cMainLine; - cursor: pointer; - } -} -.CDB-CarouselItem.is-selected { - border: 2px solid $cBlue; -}