Skip to content

Commit c080a7b

Browse files
committed
[feature] Make background of disabled buttons white
1 parent 66819b5 commit c080a7b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/assets/css/style.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.btn-primary:disabled {
2+
background-color: white;
3+
color: #007bff;
4+
}
5+
6+
.btn-secondary:disabled {
7+
background-color: white;
8+
color: #6c757d;
9+
}

src/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ import {FontAwesomeIcon} from '@fortawesome/vue-fontawesome'
2525
// Connect to the backend with a single websocket that communicates with JSON format and is attached to the store
2626
import VueNativeSock from 'vue-native-websocket'
2727

28+
import './assets/css/style.css'
29+
2830
Vue.use(TimestampFormatter);
2931

3032
Vue.use(VueHotkey);

0 commit comments

Comments
 (0)