mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-10 14:01:22 -06:00
* Bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Run `npm run format` --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Matthew Wang <matt@matthewwang.me>
30 lines
681 B
SCSS
30 lines
681 B
SCSS
// Colored button
|
|
|
|
@mixin btn-color($fg, $bg) {
|
|
color: $fg;
|
|
background-color: darken($bg, 2%);
|
|
background-image: linear-gradient(lighten($bg, 5%), darken($bg, 2%));
|
|
box-shadow:
|
|
0 1px 3px rgba(0, 0, 0, 0.25),
|
|
0 4px 10px rgba(0, 0, 0, 0.12);
|
|
|
|
&:hover,
|
|
&.zeroclipboard-is-hover {
|
|
color: $fg;
|
|
background-color: darken($bg, 4%);
|
|
background-image: linear-gradient((lighten($bg, 2%), darken($bg, 4%)));
|
|
}
|
|
|
|
&:active,
|
|
&.selected,
|
|
&.zeroclipboard-is-active {
|
|
background-color: darken($bg, 5%);
|
|
background-image: none;
|
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
&.selected:hover {
|
|
background-color: darken($bg, 10%);
|
|
}
|
|
}
|