Release post for 2.91 #34

Merged
jade merged 3 commits from jade/2.91-post into main 2024-08-13 01:17:16 +00:00
3 changed files with 35 additions and 0 deletions
Showing only changes of commit c103690644 - Show all commits

View file

@ -0,0 +1,21 @@
@use 'sass:color';
$blockquote-y-padding: 0.7rem;
blockquote {
border-left-color: desaturate($primary, 20%);
border-left-width: 0.4rem;
border-left-style: solid;
padding-left: 0.5rem;
padding-top: $blockquote-y-padding;
padding-bottom: $blockquote-y-padding;
>:first-child {
margin-top: 0;
}
>:last-child {
margin-bottom: 0;
}
}

View file

@ -0,0 +1,12 @@
$code-colour: darken($light, 5%);
pre {
background-color: $code-colour;
padding: 0.8rem;
border-radius: 0.5rem;
}
:not(pre)>code {
background-color: $code-colour;
font-size: 0.85em;
padding: 0.2em;
border-radius: 0.3em;
}

View file

@ -3,6 +3,8 @@
@import "fonts";
@import "utilities";
@import "blockquote";
@import "code";
@import "header";
@import "footer";
@import "buttons";