summaryrefslogtreecommitdiff
path: root/src/components/Header.css
blob: ef1dd60aba17be2d27640df14bd63d66fa7d997e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@scope (.__Header) {
	:scope {
		height: 3rem;
		border-bottom: 1px solid var(--overlay);
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;

		> .title {
			font-weight: 500;
			width: fit-content;
		}

		nav {
			height: 100%;
			display: flex;
			flex-direction: row;
		}
	}
}