Skip to content

Commit 75e85de

Browse files
committed
fix banner visibility
1 parent 944b5f5 commit 75e85de

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/components/NewsBanner.vue

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
<template>
22
<div
3-
class="font-code type-italic type-small type-center p-2xsmall bg-black border-bottom-white border-thin"
3+
class="banner font-code type-italic type-small type-center p-2xsmall border-bottom-white border-thin"
44
v-html="$t('newsBanner')" />
55
</template>
6+
7+
<style>
8+
.banner {
9+
background-color: #000000;
10+
color: #ffffff;
11+
12+
a {
13+
color: #3385ff;
14+
}
15+
}
16+
</style>

src/content/english/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default () => ({
77
...rpa(),
88
...testautomation(),
99
langName: 'English',
10-
newsBanner: 'World Wide Workshop Wednesday <br> October 1st 2025 - <a href="https://wwww.robotframework.org/" target="_blank">Join here</a>',
10+
newsBanner: '<div style="color: #3385ff; font-size: 1rem">World Wide Workshop Wednesday</div>October 1st 2025 - <a href="https://wwww.robotframework.org/" target="_blank">Join here</a>',
1111
navbar: {
1212
items: [
1313
{

0 commit comments

Comments
 (0)