PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
4.17.0 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 All 256 releases
give / src / Campaigns / resources / admin / components / CampaignDetailsPage / Components / DefaultForm / styles.module.scss

styles.module.scss in GiveWP – Donation Plugin and Fundraising Platform 4.17.0, at src/Campaigns/resources/admin/components/CampaignDetailsPage/Components/DefaultForm/styles.module.scss

47 lines 1012 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .defaultForm {
2 flex: 1;
3 display: flex;
4 flex-direction: column;
5 gap: 1.5rem;
6 background-color: var(--givewp-shades-white);
7 padding: 1rem 1.5rem 1.5rem 1.5rem;
8 border-radius: var(--givewp-rounded-8);
9 }
10
11 .description {
12 display: flex;
13 gap: 1rem;
14 align-items: flex-start;
15 justify-content: space-between;
16 }
17
18 .headerSpacing {
19 display: flex;
20 flex-direction: column;
21 gap: .25rem;
22 }
23
24 .edit {
25 font-size: 0.875rem;
26 color: var(--givewp-neutral-900);
27 font-weight: 500;
28 background-color: var(--givewp-neutral-100);
29 padding: .5rem 1rem;
30 border-radius: var(--givewp-rounded-4);
31 text-decoration: none;
32
33 &:hover {
34 background-color: var(--givewp-neutral-200);
35 color: var(--givewp-neutral-900);
36 }
37 }
38
39 .formName {
40 font-weight: 500;
41 background-color: var(--givewp-neutral-25);
42 padding: 0.75rem 1rem;
43 border-radius: var(--givewp-rounded-4);
44 border: solid 1px var(--givewp-neutral-100);
45 cursor: default;
46 }
47