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 / Header / styles.module.scss

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

57 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .header {
2 flex: 1;
3 display: flex;
4 justify-content: space-between;
5 align-items: center;
6 max-height: fit-content;
7 width: 100%;
8 margin-bottom: var(--givewp-spacing-6);
9 background-color: var(--givewp-shades-white);
10
11 div {
12 display: flex;
13 flex-direction: column;
14 gap: .25rem;
15 }
16 }
17
18 .headerText {
19 margin: 0;
20 color: #1f2937;
21 font-size: 16px;
22 font-weight: 600;
23 line-height: 24px;
24 }
25
26 .subHeaderText {
27 margin: 0;
28 color: #4b5563;
29 font-size: 14px;
30 font-weight: 400;
31 line-height: 20px;
32 }
33
34 .action {
35 display: flex;
36 flex-direction: row;
37 justify-content: center;
38 align-items: center;
39 gap: 4px;
40 padding: 0.5rem 1rem;
41 height: 2.25rem;
42 text-decoration: none;
43 font-size: 0.875rem;
44 font-weight: 500;
45 line-height: 1.43;
46 color: #060c1a;
47 border-radius: 4px;
48 background-color: #e5e7eb;
49 border: none;
50 cursor: pointer;
51
52 &:hover {
53 background-color: var(--givewp-neutral-200);
54 color: inherit;
55 }
56 }
57