mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-16 01:09:55 +00:00
28 lines
1.1 KiB
SCSS
28 lines
1.1 KiB
SCSS
// Keep this filter a SCSS variable rather than
|
|
// a CSS Custom Property due to this Safari bug:
|
|
// https://github.com/mdn/browser-compat-data/issues/25914#issuecomment-2676190245
|
|
$backdrop-blur-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
|
|
|
// Language codes that uses CJK fonts
|
|
$cjk-langs: ja, ko, zh-CN, zh-HK, zh-TW;
|
|
|
|
// Variables for components
|
|
$media-modal-media-max-width: 100%;
|
|
|
|
// put margins on top and bottom of image to avoid the screen covered by image.
|
|
$media-modal-media-max-height: 80%;
|
|
|
|
$no-gap-breakpoint: 1175px;
|
|
$mobile-menu-breakpoint: 760px;
|
|
$mobile-breakpoint: 630px;
|
|
$no-columns-breakpoint: 600px;
|
|
|
|
$font-sans-serif: 'mastodon-font-sans-serif' !default;
|
|
$font-display: 'mastodon-font-display' !default;
|
|
$font-monospace: 'mastodon-font-monospace' !default;
|
|
|
|
$emojis-requiring-inversion: 'back' 'copyright' 'curly_loop' 'currency_exchange'
|
|
'end' 'heavy_check_mark' 'heavy_division_sign' 'heavy_dollar_sign'
|
|
'heavy_minus_sign' 'heavy_multiplication_x' 'heavy_plus_sign' 'on'
|
|
'registered' 'soon' 'spider' 'telephone_receiver' 'tm' 'top' 'wavy_dash' !default;
|