mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 12:38:30 +08:00
Apply hound linter suggestions
This commit is contained in:
parent
400c1cb303
commit
b96dc345dd
2 changed files with 9 additions and 7 deletions
|
@ -12,16 +12,16 @@
|
|||
text-align: left;
|
||||
width: 100%;
|
||||
|
||||
&.btn-not-started {
|
||||
border: 1px solid var(--sn-sleepy-grey);
|
||||
color: var(--sn-black);
|
||||
}
|
||||
|
||||
.caret {
|
||||
margin: 8px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-toggle.btn-not-started {
|
||||
border: 1px solid var(--sn-sleepy-grey);
|
||||
color: var(--sn-black);
|
||||
}
|
||||
|
||||
|
||||
&.open .dropdown-menu{
|
||||
align-items: center;
|
||||
display: grid;
|
||||
|
@ -77,7 +77,7 @@
|
|||
border: 1px solid var(--sn-sleepy-grey);
|
||||
color: var(--sn-black);
|
||||
}
|
||||
|
||||
|
||||
.error-message {
|
||||
@include font-small;
|
||||
color: $color-silver-chalice;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class UpdateValuesInMyModuleStatuses < ActiveRecord::Migration[7.0]
|
||||
def up
|
||||
MyModuleStatus.where(name: 'Not started').update_all(color: '#FFFFFF')
|
||||
|
|
Loading…
Reference in a new issue