default button style
All checks were successful
the build was successful

This commit is contained in:
kolaente 2018-12-23 16:57:03 +01:00
parent dc1b08d855
commit e0ea6af99c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,9 @@
<template>
<div class="content loader-container" v-bind:class="{ 'is-loading': loading}">
<router-link :to="{name:'newTeam'}" class="button is-success button-right" >
<span class="icon is-small">
<icon icon="plus"/>
</span>
New Team
</router-link>
<h1>Teams</h1>

View File

@ -14,9 +14,22 @@
font-weight: bold;
height: 2.648em;
box-shadow: 0.3em 0.3em 1em lighten($dark, 75);
&.is-hovered,
&:hover {
box-shadow: 0.6em 0.6em 1em lighten($dark, 75);
}
&.is-active,
&.is-focused,
&:active,
&:focus,
&:focus:not(:active) {
box-shadow: 0.1em 0.1em 0.7em lighten($dark, 75) !important;
}
@each $name, $pair in $colors {
$color: nth($pair, 1);
$color-invert: nth($pair, 2);
&.is-#{$name} {
box-shadow: 0.3em 0.3em 1em lighten($color, 30);