Skip to content

Quicksilver0218/SCSS-Arrow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

SCSS-Arrow

$arrow-size: .35em;

@mixin arrow {
    display: inline-flex;
    border: currentColor solid $arrow-size;
}

.arrow-up {
    @include arrow;
    border-top: 0;
    border-right-color: transparent;
    border-left-color: transparent;
    vertical-align: calc(#{$arrow-size} / 2);
}

.arrow-down {
    @include arrow;
    border-bottom: 0;
    border-right-color: transparent;
    border-left-color: transparent;
    vertical-align: calc(#{$arrow-size} / 2);
}

.arrow-left {
    @include arrow;
    border-left: 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
    vertical-align: baseline;
}

.arrow-right {
    @include arrow;
    border-right: 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
    vertical-align: baseline;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published