/
githubmirror
/
algorithm-visualizer
Обзор
Документация
Войти
/
githubmirror
/
algorithm-visualizer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/components/Header/Header.module.scss
68 строк
1 KB
Jason Park
Rename jsx and scss files
09 июн 2019, 17:39
09 июн 2019, 17:39
60fcab5
Код
Авторство
О чём код?
@import "~common/stylesheet/index"; .header { display: flex; flex-direction: column; min-width: 0; .row { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid $theme-light; .section { height: $line-height; display: flex; align-items: stretch; .title_bar { font-size: $font-size-large; font-weight: bold; min-width: 0; .nav_arrow { margin: 0 4px; } .nav_caret { margin-left: 4px; } .input_title { padding: 4px 8px; background-color: $theme-light; } } .btn_dropdown { position: relative; font-weight: bold; &:active { box-shadow: none; } .dropdown { z-index: 98; position: absolute; left: 0; top: 0; display: none; flex-direction: column; align-items: stretch; box-shadow: 0 0 8px $color-shadow; background-color: $theme-light; margin-top: $line-height; } &:hover { .dropdown { display: flex; } } } } } }