aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/content-tabs.scss
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-15 14:00:17 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-15 14:00:17 +0100
commit03610f2dd6833b3b6358790d044b852c154b4bf3 (patch)
treea48a18458304a10f63c16ed108ccd2d87b91823b /src/styles/content-tabs.scss
parentfix(Recipes): Enable `urlInputPrefix` for team and customURL (diff)
downloadferdium-app-03610f2dd6833b3b6358790d044b852c154b4bf3.tar.gz
ferdium-app-03610f2dd6833b3b6358790d044b852c154b4bf3.tar.zst
ferdium-app-03610f2dd6833b3b6358790d044b852c154b4bf3.zip
feat(Recipes): Add `hasHostedOption` to enable hosted & self hosted services
Diffstat (limited to 'src/styles/content-tabs.scss')
-rw-r--r--src/styles/content-tabs.scss12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/styles/content-tabs.scss b/src/styles/content-tabs.scss
index aa3c8594b..47dfea2c4 100644
--- a/src/styles/content-tabs.scss
+++ b/src/styles/content-tabs.scss
@@ -12,15 +12,17 @@
12 flex: 1; 12 flex: 1;
13 // border: 1px solid $theme-gray-lightest; 13 // border: 1px solid $theme-gray-lightest;
14 color: $theme-gray-dark; 14 color: $theme-gray-dark;
15 background: $theme-gray-lightest; 15 background: linear-gradient($theme-gray-lightest 80%, darken($theme-gray-lightest, 3%));
16 border-bottom: 1px solid $theme-gray-lighter; 16 border-right: 1px solid $theme-gray-lighter;
17 box-shadow: inset 0px -3px 10px rgba(black, 0.05); 17 transition: background $theme-transition-time;
18 transition: all $theme-transition-time; 18
19 &:last-of-type {
20 border-right: 0;
21 }
19 22
20 &.is-active { 23 &.is-active {
21 background: $theme-brand-primary; 24 background: $theme-brand-primary;
22 color: #FFF; 25 color: #FFF;
23 border-bottom: 1px solid $theme-brand-primary;
24 box-shadow: none; 26 box-shadow: none;
25 } 27 }
26 } 28 }