News updates

pull/3711/head
Tuğçe Küçükoğlu 2023-03-08 12:37:13 +03:00
parent 380fa8de62
commit 0a84a658a1
2 changed files with 11 additions and 1 deletions

View File

@ -33,6 +33,16 @@
white-space: nowrap;
}
.layout-news-link,
.layout-news-link:visited,
.layout-news-link:active {
color:#ffffff;
font-weight:700;
}
.layout-news-link:hover {
text-decoration: underline;
}
.layout-news-close {
line-height: 1.5;
cursor: pointer;

View File

@ -1,6 +1,6 @@
const $appState = {
install: (Vue, options) => {
Vue.config.globalProperties.$appState = reactive({ theme: 'lara-light-blue', darkTheme: false, codeSandbox: false, sourceType: 'options-api', newsActive: false, announcement: {} });
Vue.config.globalProperties.$appState = reactive({ theme: 'lara-light-blue', darkTheme: false, codeSandbox: false, sourceType: 'options-api', newsActive: true, announcement: {} });
}
};