Skip to content

Commit 60741b0

Browse files
committed
fix(ui): snackbar messages style issues
Fixes #4487
1 parent 9d60bc7 commit 60741b0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/App.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ code {
369369
<script>
370370
// https://github.com/socketio/socket.io-client/blob/master/docs/API.md
371371
import io from 'socket.io-client'
372+
import 'vuetify-sonner/style.css'
372373
import { toast, VSonner } from 'vuetify-sonner'
373374
374375
import ConfigApis from '@/apis/ConfigApis'
@@ -1859,7 +1860,13 @@ export default {
18591860
}
18601861
18611862
:deep(:where([data-sonner-toaster][data-y-position='top'])) {
1862-
top: 80px !important;
1863+
top: 70px !important;
18631864
right: 10px !important;
18641865
}
1866+
1867+
@media (max-width: 600px) {
1868+
:deep(:where([data-sonner-toaster][data-y-position='top'])) {
1869+
top: 10px !important;
1870+
}
1871+
}
18651872
</style>

0 commit comments

Comments
 (0)