umami/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.module.css

64 lines
893 B
CSS
Raw Normal View History

2023-10-03 16:45:02 +00:00
.layout {
display: grid;
grid-template-columns: 300px 1fr;
border-top: 1px solid var(--base300);
}
2023-04-01 04:31:58 +00:00
.menu {
2023-10-03 16:45:02 +00:00
display: flex;
flex-direction: column;
2023-04-01 04:31:58 +00:00
position: relative;
2023-10-03 16:45:02 +00:00
padding: 20px 20px 20px 0;
}
.back {
display: inline-flex;
align-items: center;
align-self: center;
margin-bottom: 20px;
2023-04-01 04:31:58 +00:00
}
.content {
min-height: 800px;
2023-10-03 16:45:02 +00:00
padding: 20px 0 20px 20px;
border-left: 1px solid var(--base300);
2023-02-10 11:37:06 +00:00
}
2023-10-17 04:55:59 +00:00
.dropdown {
display: none;
}
@media screen and (max-width: 992px) {
.layout {
grid-template-columns: 1fr;
}
.content {
border: 0;
}
.back {
align-self: start;
margin: 0;
}
.nav {
display: none;
}
.dropdown {
display: flex;
width: 200px;
align-self: end;
}
.menu {
display: flex;
flex-direction: row;
gap: 20px;
align-items: center;
justify-content: space-between;
padding-right: 0;
}
}