Poprawki widoków

This commit is contained in:
2022-06-12 23:04:09 +02:00
parent 6167ab5826
commit e9e4096ba1
5 changed files with 12 additions and 17 deletions
+1 -1
View File
@@ -36,7 +36,7 @@
font-size: 1rem; font-size: 1rem;
@include smallScreen() { @include smallScreen() {
font-size: calc(0.45rem + 1vw); font-size: calc(0.3rem + 2vw);
} }
} }
@@ -277,17 +277,13 @@ export default defineComponent({
&-enter-from, &-enter-from,
&-leave-to { &-leave-to {
transform: translate(-100%, -50%); transform: translate(-50%, -50%) scale(0.8);
opacity: 0; opacity: 0;
} }
} }
.filter-card { .filter-card {
font-size: 0.95em; font-size: 1em;
@include smallScreen() {
font-size: 1em;
}
} }
.card { .card {
&_btn { &_btn {
@@ -295,7 +291,7 @@ export default defineComponent({
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0.5em; padding: 0.5em 1em;
border-radius: 1em 1em 0 0; border-radius: 1em 1em 0 0;
/* border-radius: 0 0.9em 0.9em 0; */ /* border-radius: 0 0.9em 0.9em 0; */
@@ -304,6 +300,7 @@ export default defineComponent({
img { img {
width: 1.5em; width: 1.5em;
margin-right: 0.5em;
} }
} }
+4 -1
View File
@@ -409,7 +409,7 @@ tr.station {
@include smallScreen() { @include smallScreen() {
margin: 0; margin: 0;
padding: 0.3em 0.5em; padding: 0.3em 0.5em;
font-size: 1.1em; font-size: 1em;
} }
} }
} }
@@ -477,6 +477,9 @@ td.station {
border-radius: 0.5em; border-radius: 0.5em;
@include smallScreen() { @include smallScreen() {
width: 24px;
height: 24px;
font-size: 10px;
} }
} }
} }
+3 -3
View File
@@ -4,10 +4,10 @@
.card { .card {
position: fixed; position: fixed;
top: 50%; top: 50%;
left: 0; left: 50%;
z-index: 100; z-index: 100;
transform: translateY(-50%); transform: translate(-50%, -50%);
overflow-x: hidden; overflow-x: hidden;
background: #202020da; background: #202020da;
@@ -15,7 +15,7 @@
box-shadow: 0 0 20px 10px #292929; box-shadow: 0 0 20px 10px #292929;
width: 550px; width: 600px;
padding: 0.5em 1em; padding: 0.5em 1em;
-5
View File
@@ -179,9 +179,4 @@ export default defineComponent({
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
@include smallScreen {
.options-bar {
font-size: 1.1em;
}
}
</style> </style>