File tree 2 files changed +7
-2
lines changed
src/components/common/navbar
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 34
34
"type:check" : " vue-tsc --build" ,
35
35
"vite:serve" : " vite --host" ,
36
36
"vite:build" : " vite build" ,
37
- "vite:preview" : " vite preview" ,
37
+ "vite:preview" : " vite preview --host " ,
38
38
"dev" : " cross-env NODE_ENV=development run-p dist vite:serve" ,
39
39
"dev:web" : " VITE_SOURCEMAP=true VITE_WEB=true run-s build vite:preview" ,
40
40
"build" : " cross-env NODE_ENV=production run-s dist type:check 'vite:build {@}' --" ,
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ const navElement = ref<HTMLElement>();
126
126
@use ' ~/styles/layout' as layout ;
127
127
128
128
nav {
129
- --navbar-tab-color : var (--trakt-red-darker );
129
+ --navbar-tab-color : hsl ( from var (--trakt-red-darker ) h s l / 80 % );
130
130
--navbar-text-color-hover : var (--trakt-red );
131
131
--navbar-text-color-hover-active : var (--white );
132
132
--navbar-text-color-active : var (--white );
@@ -154,6 +154,11 @@ nav {
154
154
display : flex ;
155
155
justify-content : center ;
156
156
min-height : 2.75rem ;
157
+
158
+ :deep (.n-tabs-capsule ) {
159
+ height : calc (#{layout .$header-navbar-height } - 0.75rem ) !important ;
160
+ border-radius : 0.5rem !important ;
161
+ }
157
162
}
158
163
}
159
164
</style >
You can’t perform that action at this time.
0 commit comments