2022-11-02 09:41:30 -04:00
|
|
|
.chat-browse-view {
|
|
|
|
position: relative;
|
2022-11-15 05:35:40 -05:00
|
|
|
box-sizing: border-box;
|
2023-05-16 14:05:56 -04:00
|
|
|
padding: 1rem 1rem env(safe-area-inset-bottom) 1rem;
|
2022-11-02 09:41:30 -04:00
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-11-11 00:39:15 -05:00
|
|
|
justify-content: flex-start;
|
2022-11-02 09:41:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
box-sizing: border-box;
|
2022-11-03 04:06:30 -04:00
|
|
|
margin-bottom: 0;
|
2022-11-02 09:41:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__content_wrapper {
|
|
|
|
box-sizing: border-box;
|
2023-05-15 05:46:33 -04:00
|
|
|
margin-top: 1rem;
|
2022-11-02 09:41:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__cards {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
2024-02-15 12:00:22 -05:00
|
|
|
grid-gap: 1.25rem;
|
2022-11-02 09:41:30 -04:00
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
grid-template-columns: repeat(1, 1fr);
|
2024-02-15 12:00:22 -05:00
|
|
|
grid-gap: 1rem;
|
2022-11-02 09:41:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: end;
|
|
|
|
|
2024-07-16 06:34:37 -04:00
|
|
|
.c-drawer-routes.--browse & {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1rem;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
.filter-input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-02 09:41:30 -04:00
|
|
|
@include breakpoint(tablet) {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.dc-filter-input-container {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dc-filter-input-container,
|
|
|
|
nav {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__filters {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
&:before {
|
|
|
|
content: none; //there is a strange thing applied on nav-pills and this resets it
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__filter {
|
|
|
|
display: inline;
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(mobile-large) {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__filter-link,
|
|
|
|
&__filter-link:visited {
|
|
|
|
color: var(--primary);
|
2024-06-24 09:54:34 -04:00
|
|
|
font-size: var(--font-up-1);
|
2022-11-02 09:41:30 -04:00
|
|
|
padding: 0 0.25rem;
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
font-size: var(--font-up-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|