Skip to content

Commit e82b3e5

Browse files
committed
fix: minor style fixes
1 parent 27427bc commit e82b3e5

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

Diff for: src/lib/components/Popover.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@
9595
position: absolute;
9696
top: 50%;
9797
left: 50%;
98-
z-index: 2;
98+
z-index: 10;
9999
}
100100
</style>

Diff for: src/lib/docs/NavBar.svelte

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
@media (max-width: 720px) {
3232
nav section:last-child {
3333
display: none;
34-
position: sticky;
35-
top: 0;
3634
}
3735
nav::-webkit-scrollbar-track {
3836
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

Diff for: src/routes/docs/examples.svelte

+6
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,18 @@
207207
display: grid;
208208
padding: 20px;
209209
grid-template-rows: auto auto 1fr;
210+
grid-template-rows: 1fr auto auto;
210211
align-items: center;
211212
height: 100%;
212213
text-align: center;
213214
align-items: center;
214215
}
215216
217+
@media (min-width: 720px) {
218+
.modal .example {
219+
}
220+
}
221+
216222
@media (max-width: 720px) {
217223
.modal {
218224
width: 100vw;

Diff for: src/routes/docs/props.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
}
8282
8383
.table :global(a) {
84-
color: #fff;
84+
color: var(--sc-theme-calendar-colors-text-primary);
8585
text-decoration: none;
8686
font-weight: bold;
8787
}

Diff for: src/routes/docs/quick-start.svelte

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@
3333
</DocPage>
3434

3535
<style>
36+
h3 {
37+
font-weight: normal;
38+
}
39+
3640
a {
37-
color: var(--sc-theme-calendar-colors-background-highlight);
41+
color: var(--sc-theme-calendar-colors-text-primary);
3842
text-decoration: none;
3943
font-weight: bold;
4044
}

0 commit comments

Comments
 (0)