0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

refactor(console): remove second param from 'unit' mixin

This commit is contained in:
Charles Zhao 2022-05-07 15:35:11 +08:00
parent 0f5491b392
commit 7a163a4994
No known key found for this signature in database
GPG key ID: 4858774754C92DF2

View file

@ -1,7 +1,7 @@
@use '@/scss/dimensions' as dim;
@function unit($factor: 1, $unit: 'px') {
@return #{$factor * 4}#{$unit};
@function unit($factor: 1) {
@return #{$factor * 4}px;
}
@mixin flex-column {