Skip to content

Commit

Permalink
Merge pull request #40 from passwall/main
Browse files Browse the repository at this point in the history
update version and sass bug
  • Loading branch information
yakuter authored Dec 10, 2021
2 parents 108f3ab + 4af8a25 commit 00a3795
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "passwall-extension",
"version": "1.0.12",
"version": "1.0.13",
"private": true,
"scripts": {
"serve": "vue-cli-service build --mode development --watch",
Expand Down
4 changes: 3 additions & 1 deletion src/styles/config/variables.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use 'sass:math';

// Form size
$input-height: 48px !default;

Expand Down Expand Up @@ -58,7 +60,7 @@ $color-gray-700: #444952 !default;
// space
$spacer: 8px !default;
$spacer-0: 0 !default; // 0
$spacer-1: round($spacer / 2) !default; // 4px
$spacer-1: math.div($spacer, 2) !default; // 4px
$spacer-2: $spacer !default; // 8px
$spacer-3: $spacer * 2 !default; // 16px
$spacer-4: $spacer * 3 !default; // 24px
Expand Down

0 comments on commit 00a3795

Please sign in to comment.