feat: add custom variables buefy

This commit is contained in:
kmacoders 2021-07-06 22:30:02 +07:00
parent d589a32a3a
commit d3873b37c3
2 changed files with 38 additions and 2 deletions

View File

@ -1,2 +1,35 @@
// Import Bulma's core
@import "~bulma/sass/utilities/_all";
$eHandyPrimaryColor: #0091ea;
$eHandyPrimaryColor-invert: #fff;
// Set your colors
$primary: #f00;
$primary: $eHandyPrimaryColor;
$primary-invert: $eHandyPrimaryColor-invert;
// Links
$link: $primary;
$link-invert: $primary-invert;
$link-focus-border: $primary;
// 4. Setup your Custom Colors
$linkedin: #0077b5;
$linkedin-invert: findcolorinvert($linkedin);
$twitter: #55acee;
$twitter-invert: findcolorinvert($twitter);
$github: #333;
$github-invert: findcolorinvert($github);
// 5. Add new color variables to the color map.
$addColors: (
"twitter":($twitter, $twitter-invert),
"linkedin": ($linkedin, $linkedin-invert),
"github": ($github, $github-invert),
"primary": ($primary, $primary-invert)
);
$colors: map-merge($colors, $addColors);
// Import Bulma and Buefy styles
@import "~bulma";
@import "~buefy/src/scss/buefy";

View File

@ -23,7 +23,10 @@
{{ firstBlog.description }}
</p>
<br>
<NuxtLink :to="{name: 'blog-slug', params: { slug: firstBlog.slug }}" class="button is-primary">
<NuxtLink
:to="{name: 'blog-slug', params: { slug: firstBlog.slug }}"
class="button is-primary"
>
Đọc thêm
</NuxtLink>
</div>