fix: remove import saas

This commit is contained in:
Julien Calixte
2026-01-26 20:08:03 +01:00
parent bc64500bae
commit 684e6eb566
3 changed files with 11 additions and 4 deletions

View File

@@ -1,7 +1,8 @@
@charset "utf-8"; @charset "utf-8";
@use "variables";
@use '../../node_modules/bulma/bulma.sass';
@import url('https://fonts.googleapis.com/css2?family=Oxygen+Mono&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Oxygen+Mono&display=swap');
@import "variables";
@import '../../node_modules/bulma/bulma.sass';
*, *,
*::before, *::before,

View File

@@ -157,8 +157,14 @@ function cancelEdit() {
</template> </template>
<style scoped lang="scss"> <style scoped lang="scss">
@import '@/assets/variables'; $family-monospace: 'Oxygen Mono', monospace;
$family-primary: $family-monospace;
$primary: #192a56;
$info: #40739e;
$link: #2f3640;
$danger: #c23616;
$warning: #fbc531;
$blob-size: 15px; $blob-size: 15px;
$blob-color: $link; $blob-color: $link;

View File

@@ -85,7 +85,7 @@ onUnmounted(() => {
<section class="message is-info paste-hint"> <section class="message is-info paste-hint">
<div class="message-body"> <div class="message-body">
Paste a list of items to directly create a new task Paste a list of items to directly create a new task
<button @click="handlePaste" class="button is-info">Paste</button> <button @click="handlePaste()" class="button is-info">Paste</button>
</div> </div>
</section> </section>
</div> </div>