PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / blocks / google-maps / styles / style.scss

style.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/blocks/google-maps/styles/style.scss

32 lines 708 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Frontend Styles
3 */
4 @import "./variables";
5
6 /* Fullheight */
7 .ghostkit-google-maps-fullheight {
8 height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
9 }
10
11 .ghostkit-google-maps {
12 position: relative;
13 background-color: var(--gkt-google-maps__background-color);
14
15 &::before,
16 > svg {
17 position: absolute;
18 top: 50%;
19 left: 50%;
20 opacity: var(--gkt-google-maps--placeholder-icon__opacity);
21 transform: translateX(-50%) translateY(-50%);
22 }
23
24 &::before {
25 display: block;
26 width: var(--gkt-google-maps--placeholder-icon__width);
27 height: var(--gkt-google-maps--placeholder-icon__height);
28 content: "";
29 background-image: var(--gkt-google-maps--placeholder-icon__background-image);
30 }
31 }
32