We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0866eb commit e25312fCopy full SHA for e25312f
src/lib/components/PageHeader.svelte
@@ -19,6 +19,8 @@
19
</div>
20
21
<style lang="scss">
22
+ @use "../styles/mixins/media";
23
+
24
.container {
25
display: flex;
26
flex-direction: column;
@@ -27,8 +29,15 @@
27
29
28
30
.header {
31
- justify-content: space-between;
32
+ flex-direction: column;
33
+ gap: var(--padding);
34
+ justify-content: center;
35
align-items: center;
36
37
+ @include media.min-width(medium) {
38
+ flex-direction: row;
39
+ justify-content: space-between;
40
+ }
41
}
42
43
.content {
0 commit comments