PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 2.25.0
Block Animations, Motion & Scroll Effects – Ghost Kit v2.25.0
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 / grid / styles / variables.scss

variables.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 2.25.0, at gutenberg/blocks/grid/styles/variables.scss

23 lines 700 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Block Variables
3 */
4 @import "../../../variables";
5
6 .ghostkit-grid {
7 --gkt-grid__gap: 15px;
8 --gkt-grid__gap-vertical: var(--gkt-grid__gap);
9 --gkt-grid__justify-content: flex-start;
10
11 // Column.
12 --gkt-grid--column__align-self: flex-start;
13 --gkt-grid--column__size: 100%;
14 --gkt-grid--column__size-with-gap: calc(var(--gkt-grid--column__size) - var(--gkt-grid__gap));
15 --gkt-grid--column__order: initial;
16 --gkt-grid--column__flex: 0 0 var(--gkt-grid--column__size-with-gap);
17 --gkt-grid--column__width: var(--gkt-grid--column__size-with-gap);
18 --gkt-grid--column__max-width: var(--gkt-grid--column__size-with-gap);
19
20 // Columns Sticky.
21 --gkt-grid--column-sticky__offset: 0;
22 }
23