PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.15.2
GiveWP – Donation Plugin and Fundraising Platform v4.15.2
4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 All 253 releases
give / src / Views / Components / AdminDetailsPage / ErrorBoundary / styles.module.scss
styles.module.scss
39 lines 707 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .errorBoundary {
2 background-color: #fdecea;
3 color: #611a15;
4 border: 1px solid #f5c6cb;
5 border-radius: 6px;
6 padding: 1rem;
7 margin: 1rem 0;
8 font-family: sans-serif;
9 }
10
11 .errorBoundaryParagraph {
12 margin: 0 0 0.5rem 0;
13 font-weight: bold;
14 }
15
16 .errorBoundaryPre {
17 background-color: #fff5f5;
18 color: #c00;
19 border: 1px solid #f1b0b7;
20 padding: 0.5rem;
21 border-radius: 4px;
22 white-space: pre-wrap;
23 word-break: break-word;
24 }
25
26 .errorBoundaryButton {
27 background-color: #c82333;
28 color: white;
29 border: none;
30 border-radius: 4px;
31 padding: 0.5rem 1rem;
32 cursor: pointer;
33 margin-top: 0.5rem;
34 transition: background-color 0.3s;
35 &:hover {
36 background-color: #a71d2a;
37 }
38 }
39