PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 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 All 255 releases
give / src / Admin / components / Grid / styles.module.scss

styles.module.scss in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Admin/components/Grid/styles.module.scss

42 lines 785 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .container {
2 display: grid;
3 grid-template-columns: repeat(2, 1fr);
4 gap: 1rem;
5 margin: 0;
6 width: 100%;
7 height: auto;
8 min-height: fit-content;
9 }
10
11 .section {
12 display: flex;
13 flex-direction: column;
14 width: 100%;
15 margin: 0 !important;
16 padding: 0;
17 }
18
19 .heading {
20 margin: 0;
21 font-size: 0.875rem;
22 font-weight: 500;
23 line-height: 1.43;
24 color: #1f2937;
25 }
26
27 .card {
28 display: flex;
29 flex-direction: column;
30 align-items: flex-start;
31 gap: var(--givewp-spacing-2);
32 width: 100%;
33 height: auto;
34 background: var(--givewp-shades-white);
35 border: 1px solid var(--givewp-neutral-50);
36 border-radius: 0.5rem;
37 padding: var(--givewp-spacing-4);
38 }
39
40 .card p:last-child {
41 margin: 0;
42 }