style: responsive voor grote monitor
This commit is contained in:
parent
56c29f3fee
commit
eeceff801b
1 changed files with 8 additions and 6 deletions
|
@ -138,7 +138,7 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
justify-content: flex-start;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container_right {
|
.container_right {
|
||||||
|
@ -171,24 +171,26 @@
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
.container_left {
|
.container_left {
|
||||||
width: 100%; /* Full width on tablets */
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start; /* Align content to the left */
|
align-items: flex-start;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
position: relative; /* Ensure child elements are positioned relative to this */
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container_right {
|
.container_right {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px; /* Adjust top position to align properly */
|
top: 10px;
|
||||||
right: 70px; /* Keep it in the right corner */
|
right: 80px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue