Consumer cards in carousel - small screen mobile view - #3637
Merged
Conversation
LKuemmel
force-pushed
the
feature_consumer
branch
2 times, most recently
from
July 15, 2026 10:05
4246bbf to
6702b3c
Compare
Brett-S-OWB
force-pushed
the
feature_consumer
branch
from
July 15, 2026 11:52
c886b0c to
b0f20e3
Compare
benderl
requested changes
Jul 16, 2026
|
|
||
| const consumerIds = computed(() => mqttStore.consumerIds); | ||
|
|
||
| const smallScreen = computed(() => $q.screen.width < 700); |
Contributor
There was a problem hiding this comment.
In allen anderen Komponenten wird smallScreen so definiert:
const isSmallScreen = computed(() => Screen.lt.sm);
Contributor
Author
There was a problem hiding this comment.
Ja, das stimmt. Quasar definiert Screen.lt.sm bei 680 px. Wenn ich den Breakpoint bei 680 px lasse, werden die Karten in diesem Bereich zwar bereits untereinander dargestellt, aber noch nicht im Carousel. Bei 700 px erfolgt der Wechsel von der Reihenansicht zur Carousel-Ansicht sauber. Sonst sieht es so aus:
benderl
approved these changes
Jul 17, 2026
LKuemmel
pushed a commit
that referenced
this pull request
Jul 23, 2026
LKuemmel
pushed a commit
that referenced
this pull request
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Auf mobilen Geräten und bei kleinen Bildschirmgrößen werden die Verbraucherkarten in einem Karussell dargestellt, sodass der Benutzer zwischen ihnen seitlich wischen kann. Auf Desktop-Geräten werden die Karten hingegen umbrochen, sodass möglichst viele Karten im verfügbaren Platz angezeigt werden können.