comparison client/src/components/KeyboardHandler.vue @ 5629:84d01a536bec 729-node-js-newer-version

Transformed scss and sass styles into css
author Luisa Beerboom <lbeerboom@intevation.de>
date Thu, 11 May 2023 13:23:52 +0200
parents 2ad3a29e0e14
children
comparison
equal deleted inserted replaced
5628:a985f8c46cf3 5629:84d01a536bec
4 <span @click="stopOperation">{{ noticeText }}</span> 4 <span @click="stopOperation">{{ noticeText }}</span>
5 </div> 5 </div>
6 </transition> 6 </transition>
7 </template> 7 </template>
8 8
9 <style lang="sass" scoped> 9 <style scoped>
10 .notice 10 .notice {
11 position: absolute 11 position: absolute;
12 top: 0 12 top: 0;
13 width: 100% 13 width: 100%;
14 text-align: center 14 text-align: center;
15 z-index: 1 15 z-index: 1;
16 font-size: 11px 16 font-size: 11px;
17 line-height: 11px 17 line-height: 11px;
18 > span 18 }
19 opacity: 0.5 19 .notice > span {
20 background: white 20 opacity: 0.5;
21 display: inline-block 21 background: white;
22 border-bottom-right-radius: 0.25rem 22 display: inline-block;
23 border-bottom-left-radius: 0.25rem 23 border-bottom-right-radius: 0.25rem;
24 padding: 3px 5px 24 border-bottom-left-radius: 0.25rem;
25 padding: 3px 5px;
26 }
25 </style> 27 </style>
26 28
27 <script> 29 <script>
28 /* This is Free Software under GNU Affero General Public License v >= 3.0 30 /* This is Free Software under GNU Affero General Public License v >= 3.0
29 * without warranty, see README.md and license for details. 31 * without warranty, see README.md and license for details.