Skip to content

Commit 9c90528

Browse files
committed
feat(layout): Implement spx-app-bar class
1 parent f02ea64 commit 9c90528

File tree

6 files changed

+52
-4
lines changed

6 files changed

+52
-4
lines changed

packages/browser-utils/src/styles/application.css

+16-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ html.spx-app {
33
color: var(--spx-color-on-background);
44
height: 100svh;
55
width: 100svw;
6-
overflow-y: hidden;
6+
overflow-y: auto;
77
overflow-x: hidden;
8-
font-family:
9-
ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
10-
'Noto Color Emoji';
8+
font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
9+
'Segoe UI Symbol', 'Noto Color Emoji';
1110

1211
> body {
1312
margin: 0;
@@ -20,6 +19,19 @@ html.spx-app {
2019
padding: 1rem;
2120
}
2221
}
22+
23+
&:has(.spx-app-bar[spx-position='top']) {
24+
scroll-margin: var(--spx-app-bar-height);
25+
> body {
26+
padding-top: var(--spx-app-bar-height);
27+
}
28+
}
29+
30+
&:has(.spx-app-bar[spx-position='bottom']) {
31+
> body {
32+
padding-bottom: var(--spx-app-bar-height);
33+
}
34+
}
2335
}
2436

2537
@media only screen and (max-width: 600px) {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import './components/control/button.css';
22
@import './components/control/input.css';
3+
@import './components/layout/app-bar.css';
34
@import './components/layout/divider.css';
45
@import './components/layout/container.css';
56
@import './components/typography/heading.css';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.spx-app-bar {
2+
position: fixed;
3+
z-index: var(--spx-z-app-bar);
4+
height: var(--spx-app-bar-height);
5+
width: 100svw;
6+
display: flex;
7+
flex-direction: row;
8+
align-items: center;
9+
justify-content: space-between;
10+
box-sizing: border-box;
11+
background: var(--spx-color-app-bar);
12+
color: var(--spx-color-on-app-bar);
13+
padding: 4px;
14+
box-shadow: var(--spx-shadow-medium);
15+
16+
&[spx-position='top'] {
17+
top: 0;
18+
}
19+
20+
&[spx-position='bottom'] {
21+
bottom: 0;
22+
}
23+
24+
/* .spx-app-bar-left,
25+
.spx-app-bar-right,
26+
.spx-app-bar-center {
27+
> .spx-button {
28+
height: var(--spx-app-bar-height);
29+
font-size: x-large;
30+
}
31+
} */
32+
}

packages/browser-utils/src/styles/layout.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
:root {
22
--spx-z-modal: 85;
33
--spx-z-modal-overlay: 81;
4+
--spx-z-app-bar: 51;
45
}
56

67
.spx[spx-size='auto'] {

packages/browser-utils/src/styles/modal.css

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
border-radius: var(--spx-border-radius);
2020
width: fit-content;
2121
max-width: 80svw;
22+
box-shadow: var(--spx-shadow-medium);
2223
}
2324

2425
.spx-modal[data-open] {

packages/browser-utils/src/styles/variables.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
:root {
22
--spx-main-content-width: 1440px;
33

4+
--spx-app-bar-height: 48px;
45
--spx-control-height-default: 40px;
56
--spx-input-height-default: 48px;
67

0 commit comments

Comments
 (0)