Compare commits

..

No commits in common. "e03cca242824a3e3eb4f4e1cddb5239250052447" and "a7099ee6ccad818a4665e32ed9295761de6a03b8" have entirely different histories.

3 changed files with 14 additions and 27 deletions

View File

@ -23,7 +23,7 @@
/>
<div class="w-full bg-slate-800 rounded-xl shadow">
<br />
<h2 class="font-semibold text-left ml-10 mb-2">
<h2 class="font-semibold text-left ml-10">
Tech
</h2>
<ul class="ml-10 list-disc marker:text-blue-400">

View File

@ -1,21 +1,19 @@
<div class="hidden col-start-1 col-span-1 bg-slate-800 md:flex flex-col justify-start gap-2 p-2">
<div class=" shrink">
<div class="hidden col-start-1 col-span-1 bg-slate-800 md:grid grid-cols-2 justify-start gap-2 p-2">
<div class="col-span-2">
<p class="">
Welcome to my sidebar (o^▽^o)
<br />
Here you will find random shit!
</p>
</div>
<div class="flex flex-col xl:flex-row gap-2 xl:mr-2">
<img
class="flex-1 rounded xl:w-1/2"
class="col-start-1 rounded"
src="https://dutchellie.nl/DutchEllie/proper-website-2/raw/branch/main/web/static/images/kanata-1.gif"
alt="Amane Kanata"
/>
<img
class=" flex-1 rounded xl:w-1/2"
class="col-start-2 rounded"
src="https://dutchellie.nl/DutchEllie/proper-website-2/raw/branch/main/web/static/images/kanata-1.gif"
alt="Amane Kanata"
/>
</div>
</div>

View File

@ -1,26 +1,15 @@
<script>
import {page} from '$app/stores';
export let link = '';
export let text = '';
</script>
<a href="{link}">
<button class="{$page.url.pathname == link ? "active-now" : ""} text-violet-50 py-2 px-4 font-montserrat font-light link-underline">
<button class="text-slate-50 py-2 px-4 font-montserrat font-light link-underline">
{text}
</button>
</a>
<style>
.active-now:before {
content: '';
position: absolute;
width: 100%;
transform: scaleX(1);
height: 2px;
bottom: 0;
left: 0;
background-color: #638CF6;
}
.link-underline {
display: inline-block;
position: relative;