/
githubmirror
/
algorithm-visualizer
Обзор
Документация
Войти
/
githubmirror
/
algorithm-visualizer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/components/Divider/Divider.module.scss
38 строк
516 B
Jason Park
Rename jsx and scss files
09 июн 2019, 17:39
09 июн 2019, 17:39
60fcab5
Код
Авторство
О чём код?
@import "~common/stylesheet/index"; .divider { position: relative; z-index: 97; &:after { position: absolute; background-color: $theme-light; content: ''; } &.horizontal { width: 7px; margin: 0 -3px; cursor: ew-resize; &:after { top: 0; bottom: 0; left: 3px; width: 1px; } } &.vertical { height: 7px; margin: -3px 0; cursor: ns-resize; &:after { left: 0; right: 0; top: 3px; height: 1px; } } }