We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809e273 commit c0ce2d1Copy full SHA for c0ce2d1
library/src/styles/toast-component.css
@@ -80,6 +80,7 @@
80
.t_icon {
81
fill: var(--text-color);
82
margin-top: 0.1rem;
83
+ flex-shrink: 0;
84
}
85
86
.t_content {
library/src/styles/toast-context.css
@@ -7,6 +7,7 @@
7
z-index: 9999;
8
overflow: hidden;
9
transition: max-height 0.5s ease-in-out;
10
+ width: 100%;
11
12
13
.t_default_font {
@@ -58,3 +59,10 @@
58
59
left: 50%;
60
transform: translateX(-50%);
61
62
+
63
+@media (min-width: 768px) {
64
+ .t_toasts {
65
+ max-width: 350px;
66
+ margin: 0 auto;
67
+ }
68
+}
0 commit comments