Skip to content

Commit

Permalink
Tidy Repo structure RISDEV-4536 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo225 authored Aug 12, 2024
1 parent c61463a commit 6e0038d
Show file tree
Hide file tree
Showing 15 changed files with 27 additions and 67 deletions.
5 changes: 2 additions & 3 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { setup } from "@storybook/vue3";
import PrimeVue from "primevue/config";
import customPresets from "../src/components/customPresets";
import "../src/style.css";
import PresetCollection from "../src/components/PresetCollection";
import '../src/global.css';

setup((app) => {
app.use(PrimeVue, {
pt: customPresets,
pt: PresetCollection,
unstyled: true,
});
});
3 changes: 0 additions & 3 deletions .vscode/extensions.json

This file was deleted.

12 changes: 0 additions & 12 deletions index.html

This file was deleted.

6 changes: 0 additions & 6 deletions src/App.vue

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions src/components/PresetCollection.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Button from './Button';
import TextInput from "./TextInput";
import InputGroup from "./InputGroup";
import InputGroupAddon from "./InputGroupAddon";

const PresetCollection = {
button: Button,
inputText: TextInput,
inputGroup: InputGroup,
inputGroupAddon: InputGroupAddon,
};

export default PresetCollection;
File renamed without changes.
File renamed without changes.
13 changes: 0 additions & 13 deletions src/components/customPresets.ts

This file was deleted.

12 changes: 12 additions & 0 deletions src/global.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
@import "@digitalservice4germany/angie/fonts.css";

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
body {
@apply bg-gray-100 font-font-family-sans font-normal;
}
}

input + small {
@apply flex items-center gap-2 mt-8;
}
Expand Down
19 changes: 0 additions & 19 deletions src/main.ts

This file was deleted.

11 changes: 0 additions & 11 deletions src/style.css

This file was deleted.

0 comments on commit 6e0038d

Please sign in to comment.