summary responsive
This commit is contained in:
parent
de841204e7
commit
84d148379d
2 changed files with 36 additions and 10 deletions
|
|
@ -24,9 +24,21 @@ app-header {
|
|||
|
||||
.content {
|
||||
width: calc(100% - 128px);
|
||||
min-width: calc(100vw - 232px - 128px);
|
||||
min-width: calc(100vw - 232px - 64px);
|
||||
height: 100vh;
|
||||
padding: 64px;
|
||||
padding: 64px 0 0 64px;
|
||||
background-color: var(--bgContent);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 910px) {
|
||||
.content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
min-width: calc(100vw);
|
||||
padding: 32px 0 0 0;
|
||||
}
|
||||
app-sidebar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -61,7 +61,6 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 18px;
|
||||
width: 264px;
|
||||
height: 168px;
|
||||
border-radius: 30px;
|
||||
|
|
@ -90,14 +89,18 @@
|
|||
.urgent {
|
||||
width: 560px;
|
||||
.right {
|
||||
width: 40%;
|
||||
width: 58%;
|
||||
}
|
||||
.left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 18px;
|
||||
width: 40%;
|
||||
width: 52%;
|
||||
}
|
||||
.line {
|
||||
height: 100px;
|
||||
width: 2px;
|
||||
background-color: var(--gray);
|
||||
}
|
||||
img {
|
||||
height: 69px;
|
||||
|
|
@ -152,8 +155,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
.line {
|
||||
height: 100px;
|
||||
width: 2px;
|
||||
background-color: var(--gray);
|
||||
@media screen and (max-width: 1250px) {
|
||||
.right-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1020px) {
|
||||
.header {
|
||||
.title {
|
||||
font-size: 50px;
|
||||
}
|
||||
.metrics-txt {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue