This commit is contained in:
2022-11-16 12:54:14 +01:00
parent dc2062d906
commit 3155487a29
5 changed files with 20 additions and 10 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ footer {
@media screen and (max-width: 500px) { @media screen and (max-width: 500px) {
#app { #app {
font-size: calc(1vw + 0.5rem); font-size: calc(1vw + 0.65rem);
} }
} }
</style> </style>
+9 -4
View File
@@ -104,22 +104,27 @@ export default defineComponent({
} }
.order-list { .order-list {
padding: 1em; overflow: auto;
} }
ul { ul {
max-height: 750px;
height: 80vh;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
position: relative; position: relative;
} }
h3 { h3 {
position: sticky;
top: 0;
z-index: 100;
margin: 0; margin: 0;
margin-bottom: 1em; margin-bottom: 1em;
text-align: center; text-align: center;
background-color: #222;
padding: 1em;
margin-bottom: 0.5em;
} }
li { li {
-2
View File
@@ -153,8 +153,6 @@ export default defineComponent({
<style lang="scss" scoped> <style lang="scss" scoped>
.order-message { .order-message {
padding: 1em;
h3 { h3 {
margin: 0; margin: 0;
margin-bottom: 1em; margin-bottom: 1em;
-3
View File
@@ -233,7 +233,6 @@ export default defineComponent({
@import '../styles/global.scss'; @import '../styles/global.scss';
.order-train-picker { .order-train-picker {
padding: 1em;
height: 90vh; height: 90vh;
overflow-y: auto; overflow-y: auto;
@@ -241,8 +240,6 @@ export default defineComponent({
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin-top: 1em;
} }
.options { .options {
+10
View File
@@ -130,12 +130,22 @@ export default defineComponent({
.message_container { .message_container {
width: 500px; width: 500px;
display: grid;
grid-template-rows: auto 1fr;
overflow: hidden;
height: 95vh;
} }
.message_nav { .message_nav {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
flex-wrap: wrap;
margin-bottom: 2em;
} }
} }
</style> </style>