Skip to content

Commit dda209c

Browse files
committed
Fixed pointer on swiss logo
1 parent 000ac30 commit dda209c

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

src/modules/drawing/DrawingModule.vue

-14
Original file line numberDiff line numberDiff line change
@@ -186,17 +186,3 @@ async function closeDrawing() {
186186
<DrawingInteractions ref="drawingInteractions" />
187187
</div>
188188
</template>
189-
190-
<style lang="scss" scoped>
191-
/* Global styles as what is described below will not be wrapped
192-
in this component but added straight the the OpenLayers map */
193-
:global(.cursor-grab) {
194-
cursor: grab;
195-
}
196-
:global(.cursor-grabbing) {
197-
cursor: grabbing;
198-
}
199-
:global(.cursor-pointer) {
200-
cursor: pointer;
201-
}
202-
</style>

src/scss/main.scss

+10
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,13 @@ li {
4242
outline: $focus-outline;
4343
}
4444
}
45+
46+
.cursor-grab {
47+
cursor: grab;
48+
}
49+
.cursor-grabbing {
50+
cursor: grabbing;
51+
}
52+
.cursor-pointer {
53+
cursor: pointer;
54+
}

0 commit comments

Comments
 (0)