1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

Set notification width to fixed

This commit is contained in:
Mel O'Hagan 2022-07-21 12:03:01 +01:00
parent 201b46e229
commit 23201f784c

View file

@ -32,7 +32,6 @@
position: fixed;
top: 20px;
bottom: 40px;
width: 25%;
left: 0;
right: 0;
margin: 0 auto;
@ -41,8 +40,12 @@
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: end;
align-items: center;
pointer-events: none;
gap: 10px;
}
.notifications :global(.spectrum-Toast) {
width: 400px;
max-width: 100vw;
}
</style>