mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1export const SCROLLBAR_OFFSET =
2 'calc(-1 * var(--removed-body-scroll-bar-size, 0px) / 2)' as any
3export const SCROLLBAR_OFFSET_POSITIVE =
4 'calc(var(--removed-body-scroll-bar-size, 0px) / 2)' as any
5
6/**
7 * Useful for visually aligning icons within header buttons with the elements
8 * below them on the screen. Apply positively or negatively depending on side
9 * of the screen you're on.
10 */
11export const BUTTON_VISUAL_ALIGNMENT_OFFSET = 3
12
13/**
14 * Corresponds to the width of a small square or round button
15 */
16export const HEADER_SLOT_SIZE = 33
17
18/**
19 * How far to shift the center column when in the tablet breakpoint
20 */
21export const CENTER_COLUMN_OFFSET = -105