0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-03 21:48:55 -05:00

refactor(ui): remove second attribute in unit scss function (#721)

remove second attribute in unit scss function
This commit is contained in:
simeng-li 2022-05-05 14:23:08 +08:00 committed by GitHub
parent 92e8ed199d
commit 26332f8644
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
@function unit($factor: 1, $unit: 'px') { @function unit($factor: 1) {
@return #{$factor * 4}#{$unit}; @return #{$factor * 4}px;
} }
@mixin flex-column { @mixin flex-column {