Last change
on this file since 59329aa was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
902 bytes
|
Line | |
---|
1 | .p-toast {
|
---|
2 | position: fixed;
|
---|
3 | width: 25rem;
|
---|
4 | }
|
---|
5 |
|
---|
6 | .p-toast-message {
|
---|
7 | overflow: hidden;
|
---|
8 | }
|
---|
9 |
|
---|
10 | .p-toast-message-content {
|
---|
11 | display: flex;
|
---|
12 | align-items: flex-start;
|
---|
13 | }
|
---|
14 |
|
---|
15 | .p-toast-message-text {
|
---|
16 | flex: 1 1 auto;
|
---|
17 | }
|
---|
18 |
|
---|
19 | .p-toast-top-right {
|
---|
20 | top: 20px;
|
---|
21 | right: 20px;
|
---|
22 | }
|
---|
23 |
|
---|
24 | .p-toast-top-left {
|
---|
25 | top: 20px;
|
---|
26 | left: 20px;
|
---|
27 | }
|
---|
28 |
|
---|
29 | .p-toast-bottom-left {
|
---|
30 | bottom: 20px;
|
---|
31 | left: 20px;
|
---|
32 | }
|
---|
33 |
|
---|
34 | .p-toast-bottom-right {
|
---|
35 | bottom: 20px;
|
---|
36 | right: 20px;
|
---|
37 | }
|
---|
38 |
|
---|
39 | .p-toast-top-center {
|
---|
40 | top: 20px;
|
---|
41 | left: 50%;
|
---|
42 | transform: translateX(-50%);
|
---|
43 | }
|
---|
44 |
|
---|
45 | .p-toast-bottom-center {
|
---|
46 | bottom: 20px;
|
---|
47 | left: 50%;
|
---|
48 | transform: translateX(-50%);
|
---|
49 | }
|
---|
50 |
|
---|
51 | .p-toast-center {
|
---|
52 | left: 50%;
|
---|
53 | top: 50%;
|
---|
54 | min-width: 20vw;
|
---|
55 | transform: translate(-50%, -50%);
|
---|
56 | }
|
---|
57 |
|
---|
58 | .p-toast-icon-close {
|
---|
59 | display: flex;
|
---|
60 | align-items: center;
|
---|
61 | justify-content: center;
|
---|
62 | overflow: hidden;
|
---|
63 | position: relative;
|
---|
64 | }
|
---|
65 |
|
---|
66 | .p-toast-icon-close.p-link {
|
---|
67 | cursor: pointer;
|
---|
68 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.