mirror of
https://github.com/godotengine/godot-website.git
synced 2025-12-31 09:48:43 +03:00
* Fix building with Jekyll on Ruby 3.4 Ruby 3.4 removed several standard library packages, so they have to be installed as gems instead. This also updates Jekyll to use a version that's supported in Ruby 3.4. The minimum required Ruby version is now 3.2. * Fix Sass deprecations This allows the website to build on Ruby 3.4.0 + Jekyll 4.4.1. More information: - https://sass-lang.com/blog/import-is-deprecated/
18 lines
322 B
SCSS
18 lines
322 B
SCSS
---
|
|
---
|
|
@use "common/release";
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
|
|
@media (prefers-reduced-motion) {
|
|
scroll-behavior: auto;
|
|
}
|
|
}
|
|
|
|
|
|
.release-container {
|
|
position: relative;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
}
|