Skip to content

Commit

Permalink
refactor: Apply beautifier on vue, ts, scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-dietrich committed Jan 6, 2023
1 parent d5b6e56 commit 48ba5fa
Show file tree
Hide file tree
Showing 17 changed files with 952 additions and 783 deletions.
35 changes: 18 additions & 17 deletions client/assets/scss/main.scss
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
@import './materialdesignicons.min.css';

@font-face {
font-family: MainFont;
src: url('../fonts/IBMPlexSans-Medium.ttf');
font-family: MainFont;
src: url('../fonts/IBMPlexSans-Medium.ttf');
}

html, body {
font-family: MainFont !important;
html,
body {
font-family: MainFont !important;
}


.handle {
cursor: move; /* fallback if grab cursor is unsupported */
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.handle:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
cursor: move;
/* fallback if grab cursor is unsupported */
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.handle:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
6 changes: 5 additions & 1 deletion client/components/Module.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
r<template>
<div style="height: 100%; width: 100%" :key="scrapedModule.url">
<div
style="height: 100%; width: 100%"
:key="scrapedModule.url"
>
<iframe
style="height: 100%; width: 100%"
:key="liveClassProxy.users[username].room"
Expand All @@ -14,6 +17,7 @@ r<template>
</div>
</template>


<script>
export default {
name: "Module",
Expand Down
Loading

0 comments on commit 48ba5fa

Please sign in to comment.