Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_form.scss « mixins « utils « scss « src - github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a24398fb4c6c3acc17b47e29592d559b614c6c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Helper to stylize a input with a specified size
/// @param {Number} $height - Height CSS value
/// @param {String} $padding - Padding CSS value
/// @param {String} $font-size - Font-size CSS value
/// @param {String} $line-height - Line-height CSS value
@mixin input-size-variant($height, $padding, $font-size, $line-height) {
    & {
        height:      $height;
        padding:     $padding;
        font-size:   $font-size;
        line-height: $line-height;
    }
}