We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fd507a commit 01eee47Copy full SHA for 01eee47
packages/live-web-view/layout/style/fullscreen.css
@@ -5,10 +5,15 @@
5
&FullScreen&.vh-center{
6
@apply items-center justify-center;
7
}
8
-
9
&FullScreen&.pad-topnav{
10
@apply pt-[3rem];
11
+&FullScreen&.top-space-nav{
12
+ @apply h-[calc(100vh-3rem)];
13
+}
14
+&FullScreen&.top-space-10{
15
+ @apply h-[calc(100vh-2.5rem)];
16
17
18
&FullScreen .responsive {
19
@apply absolute min-w-full min-h-full object-cover;
packages/live-web-view/navigation/NavSections.lv
@@ -43,7 +43,7 @@ component NavSections < Div{
43
44
} else {
45
return Li{
46
- A{ href: link.href classes: [active === link.href ? 'active' : '']
+ A{ href: link.href classes: [active && link.href.endsWith(active) ? 'active' : '']
47
T{ text: link.label }
48
49
0 commit comments