/
githubmirror
/
algorithm-visualizer
Обзор
Документация
Войти
/
githubmirror
/
algorithm-visualizer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/components/CodeEditor/CodeEditor.module.scss
63 строки
1 KB
Jason Park
Rename jsx and scss files
09 июн 2019, 17:39
09 июн 2019, 17:39
60fcab5
Код
Авторство
О чём код?
@import "~common/stylesheet/index"; .code_editor { flex: 1; display: flex; flex-direction: column; align-items: stretch; .ace_editor { flex: 1; width: 100% !important; height: 100% !important; min-width: 0 !important; min-height: 0 !important; .current_line_marker { background-color: rgba($color-highlight, 0.4); border: 1px solid $color-highlight; position: absolute; width: 100% !important; animation: line_highlight .1s; } @keyframes line_highlight { from { background-color: rgba($color-highlight, 0.1); } to { background-color: rgba($color-highlight, 0.4); } } } .contributors_viewer { display: flex; flex-wrap: wrap; align-items: center; padding: 4px; background-color: $theme-normal; .contributor { height: 28px; padding: 0 6px; font-weight: bold; &.label { display: flex; align-items: center; white-space: nowrap; } } .empty { display: flex; flex: 1; } .delete { height: $line-height; } } }