Update CSS import
This commit is contained in:
parent
f8548cdc39
commit
9759a64069
|
|
@ -110,7 +110,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
body {
|
||||
overflow-y: auto;
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.add-content {
|
||||
display: none;
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.add-widget {
|
||||
display: none;
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.assignment-with-submissions {
|
||||
&__title {
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.back-link {
|
||||
@include regular-text;
|
||||
|
|
|
|||
|
|
@ -232,7 +232,7 @@ const textHidden = (type: string) => {
|
|||
|
||||
<style lang="scss">
|
||||
/* todo: re-add `scoped`, same as in ContentBlock.vue */
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.chapter {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -357,7 +357,7 @@ const root = computed(() => {
|
|||
|
||||
<style lang="scss">
|
||||
/* todo: re-add `scoped` after switch to vite or this bug is fixed: https://github.com/vuejs/vue-loader/issues/1915 */
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-block {
|
||||
margin-bottom: $section-spacing;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ const copyLink = () => {
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
.copy-link {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.header-bar {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.loading-button {
|
||||
height: 52px;
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.mobile-header {
|
||||
justify-content: space-between;
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.more-options {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.read-only-banner {
|
||||
background-color: $color-brand-light;
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.student-submission {
|
||||
@include table-row;
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.user-widget {
|
||||
color: $color-silver-dark;
|
||||
|
|
|
|||
|
|
@ -24,9 +24,9 @@
|
|||
<script>
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
const ChevronDown = defineAsyncComponent(() =>
|
||||
import(/* webpackChunkName: "icons" */ '@/components/icons/ChevronDown')
|
||||
import('@/components/icons/ChevronDown.vue')
|
||||
);
|
||||
const ChevronUp = defineAsyncComponent(() => import(/* webpackChunkName: "icons" */ '@/components/icons/ChevronUp'));
|
||||
const ChevronUp = defineAsyncComponent(() => import('@/components/icons/ChevronUp.vue'));
|
||||
|
||||
export default {
|
||||
props: ['title'],
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.topic-navigation {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
$color: $color-silver-dark;
|
||||
$icon-size: 14px;
|
||||
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
// override parent page properties
|
||||
.layout--no-scroll {
|
||||
padding-bottom: 20px;
|
||||
|
|
@ -351,7 +351,7 @@ export default defineComponent({
|
|||
</style>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-block-form {
|
||||
max-width: 100%;
|
||||
|
|
|
|||
|
|
@ -362,7 +362,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-element {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-element-actions {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-form-section {
|
||||
@include default-box-shadow;
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.contents-form {
|
||||
/* top level does not exist, because of the modal */
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.cms-document-block {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-component {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.document-block {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.image-block {
|
||||
width: 100%;
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/_variables.scss';
|
||||
@import 'styles/_variables.scss';
|
||||
|
||||
.instrument-widget {
|
||||
margin-bottom: $small-spacing;
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.solution {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.subtitle {
|
||||
padding-top: 1px;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.text-block {
|
||||
margin-bottom: $medium-spacing; // if calc is not supported
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.final-submission {
|
||||
&__text {
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ const changeDocumentUrl = (documentUrl: string) => {
|
|||
|
||||
<style lang="scss">
|
||||
// todo: use `scoped` once no longer on webpack
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.submission-form-container {
|
||||
@include form-with-border;
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.submission-form {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ export default {
|
|||
};
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.assignment-form {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.chooser-element {
|
||||
cursor: pointer;
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.content-block-element-chooser-widget {
|
||||
display: -ms-grid;
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.document-form {
|
||||
&__uploaded {
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.image-form {
|
||||
&__error {
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.link-form {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.subtitle-form {
|
||||
&__input {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.text-form {
|
||||
&__input {
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.tip-tap {
|
||||
&__editor-wrapper {
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/variables';
|
||||
@import 'styles/variables';
|
||||
|
||||
.bookmark-icon {
|
||||
width: 24px;
|
||||
|
|
|
|||
|
|
@ -37,5 +37,5 @@
|
|||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.filter-entry {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.filter-group {
|
||||
border-bottom: 1px solid $color-silver;
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.instrument-entry {
|
||||
padding: $medium-spacing;
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.instrument-filter {
|
||||
display: none;
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.confirm-dialog {
|
||||
&__heading {
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.module {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
@mixin module-navigation-typography {
|
||||
font-family: $sans-serif-font-family;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
@mixin module-navigation-typography {
|
||||
font-family: $sans-serif-font-family;
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.module-teaser {
|
||||
box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.12);
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.snapshot-created {
|
||||
&__heading {
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.snapshot-header {
|
||||
&__subtitle {
|
||||
|
|
|
|||
|
|
@ -231,7 +231,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.snapshot-list-item {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.snapshot-menu {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.snapshot-team-menu {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.news-teaser {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.bookmark-actions {
|
||||
height: 100%;
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.objective-group {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.objective-groups {
|
||||
margin-bottom: $large-spacing;
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.page-form {
|
||||
width: 710px;
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.add-project-entry {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -22,5 +22,5 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.portfolio-onboarding {
|
||||
@include onboarding-page;
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/_helpers.scss';
|
||||
@import 'styles/_helpers.scss';
|
||||
|
||||
.project-actions {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.project-entry {
|
||||
background-color: $color-white;
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.project-entry-modal {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.project-form {
|
||||
@include widget-shadow;
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.project-list {
|
||||
border-top: 1px solid $color-silver;
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.project {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.project-widget {
|
||||
border-radius: $default-border-radius;
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.share-icon {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
$max-width: 100%;
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.deactivate-user {
|
||||
&__heading {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/_variables.scss';
|
||||
@import 'styles/_variables.scss';
|
||||
|
||||
.edit-group-name {
|
||||
&__icon {
|
||||
|
|
|
|||
|
|
@ -73,5 +73,5 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.group-list {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -77,5 +77,5 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
$desktop-width: 333px;
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.show-code {
|
||||
&__title {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ const addRoomEntryRoute = {
|
|||
|
||||
<style lang="scss">
|
||||
// todo: re-add scoped once we're on vite
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.add-room-entry-button {
|
||||
border: 2px solid $color-white;
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.change-visibility {
|
||||
&__heading {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.comment {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.comment-input {
|
||||
@include form-with-border;
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.entry-count-widget {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.more-actions {
|
||||
svg {
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
$height: 30px;
|
||||
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.room-entry {
|
||||
border-radius: 12px;
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
$height: 30px;
|
||||
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.room-form {
|
||||
&__property-heading {
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.room-group-widget {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.room-visibility-widget {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.room-widget {
|
||||
display: -ms-grid;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.rooms-onboarding {
|
||||
@include onboarding-page;
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.class-selection {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.button-with-icon-and-text {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
@import 'styles/helpers';
|
||||
|
||||
.emoji-bar {
|
||||
display: flex;
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue