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);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-12 20:40:19 +00:00
|
|
|
.header > div {
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-27 00:57:59 +00:00
|
|
|
.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-13 00:43:08 +00:00
|
|
|
height: 60px;
|
2023-04-10 03:22:28 +00:00
|
|
|
}
|
|
|
|
|
|
2023-04-12 20:40:19 +00:00
|
|
|
.actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
|
|
|
.header {
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
|
flex-basis: 100%;
|
|
|
|
|
order: -1;
|
|
|
|
|
}
|
2020-08-07 07:24:01 +00:00
|
|
|
}
|