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) {
#app {
font-size: calc(1vw + 0.5rem);
font-size: calc(1vw + 0.65rem);
}
}
</style>
+9 -4
View File
@@ -104,22 +104,27 @@ export default defineComponent({
}
.order-list {
padding: 1em;
overflow: auto;
}
ul {
max-height: 750px;
height: 80vh;
overflow-y: auto;
overflow-x: hidden;
position: relative;
}
h3 {
position: sticky;
top: 0;
z-index: 100;
margin: 0;
margin-bottom: 1em;
text-align: center;
background-color: #222;
padding: 1em;
margin-bottom: 0.5em;
}
li {
-2
View File
@@ -153,8 +153,6 @@ export default defineComponent({
<style lang="scss" scoped>
.order-message {
padding: 1em;
h3 {
margin: 0;
margin-bottom: 1em;
-3
View File
@@ -233,7 +233,6 @@ export default defineComponent({
@import '../styles/global.scss';
.order-train-picker {
padding: 1em;
height: 90vh;
overflow-y: auto;
@@ -241,8 +240,6 @@ export default defineComponent({
display: flex;
flex-direction: column;
align-items: center;
margin-top: 1em;
}
.options {
+10
View File
@@ -130,12 +130,22 @@ export default defineComponent({
.message_container {
width: 500px;
display: grid;
grid-template-rows: auto 1fr;
overflow: hidden;
height: 95vh;
}
.message_nav {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 2em;
}
}
</style>