aboutsummaryrefslogtreecommitdiff
path: root/src/App.svelte
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-07-21 08:57:30 -0400
committerFurkan Sahin <furkan-dev@proton.me>2022-07-21 08:57:30 -0400
commit4d0484132aa2a6baef12a5ed5d3d4c3ca1ad7106 (patch)
tree9e6afc515a7b92e9ee89c75888b0a23b02c8735c /src/App.svelte
parent59067695f934184c7e6efaa4fc89fbde2f27a7cb (diff)
All works. learn source map error and fix it
Diffstat (limited to 'src/App.svelte')
-rw-r--r--src/App.svelte62
1 files changed, 4 insertions, 58 deletions
diff --git a/src/App.svelte b/src/App.svelte
index 45defe1..337e323 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -1,62 +1,8 @@
<!-- This is the Root component that loads other components -->
<script lang="ts">
- import Sidebar from "./components/Sidebar.svelte";
+ import Sidebar from "./components/Sidebar.svelte";
</script>
-<Sidebar />
-
-<style global lang="postcss">
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
-
- @layer base {
- html {
- font-family: sans-serif, Proxima Nova;
- }
- }
-
- /* Custom Styles */
- @layer utilities {
- .assign-box {
- /* w-1/3 bg-green-500 flex flex-col border-solid hover:border-4 border-2 border-slate-400 */
- flex: none;
- flex-direction: column;
- width: 33.33%;
- display: flex;
- border-width: 4px;
- border-color: rgb(148 163 184);
- }
- .assign-box:hover {
- /* border-width: 6px; */
- border-color: black;
- border-width: 6px;
- /* border-width: 8px; */
- /* transition-timing-function: ease-in-out; */
- }
-
- .assign-box:hover > .assign-box-header {
- border-bottom-color: black;
- border-bottom-width: 6px;
- }
-
- .assign-box-header {
- font-size: 1.5rem;
- font-family: sans;
- border-bottom-color: rgb(148 163 184);
- border-bottom-width: 4px;
- text-align: center;
- /* height: 9%; */
- height: 10vh;
- overflow: hidden;
- flex: none;
- }
-
- .assign-box-body {
- /* flex-direction: row; */
- flex: 1 1 auto;
- overflow-y: auto;
- height: 100%;
- }
- }
-</style>
+<main>
+ <Sidebar />
+</main>