mirror of
https://github.com/mue/mue.git
synced 2026-07-09 21:45:26 +02:00
44 lines
603 B
SCSS
44 lines
603 B
SCSS
.tab-content {
|
|
position: absolute;
|
|
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 2300px) {
|
|
.tab-content {
|
|
left: 350px;
|
|
top: 7%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1920px) {
|
|
.tab-content {
|
|
left: 120px;
|
|
top: 60px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1920px) {
|
|
.tab-content {
|
|
left: 350px;
|
|
top: 9%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1400px),
|
|
(min-width: 1400px) {
|
|
.tab-content {
|
|
left: 350px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
.tab-content {
|
|
left: 125px;
|
|
top: 90px;
|
|
}
|
|
}
|