2020-08-07 07:24:01 +00:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2020-08-09 10:04:48 +00:00
|
|
|
align-content: center;
|
2020-09-27 07:51:29 +00:00
|
|
|
align-self: stretch;
|
2022-12-27 00:57:59 +00:00
|
|
|
margin-bottom: 40px;
|
2023-04-10 03:22:28 +00:00
|
|
|
flex-wrap: wrap;
|
2022-12-27 00:57:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header a {
|
|
|
|
|
color: var(--base600);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header a:hover {
|
|
|
|
|
color: var(--base900);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2023-02-15 10:27:18 +00:00
|
|
|
font-size: 24px;
|
|
|
|
|
font-weight: 700;
|
2022-12-27 00:57:59 +00:00
|
|
|
gap: 20px;
|
2023-04-10 03:22:28 +00:00
|
|
|
line-height: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.xs .actions,
|
|
|
|
|
.sm .actions {
|
|
|
|
|
flex-basis: 100%;
|
2020-08-07 07:24:01 +00:00
|
|
|
}
|