Skip to content

Commit

Permalink
fix ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Hetari committed Sep 24, 2024
1 parent 63909d2 commit 0af69c1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/components/design/Marquee.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<template>
isSmallScreen: {{ isSmallScreen }}
<section
v-if="!isSmallScreen"
id="marquee-section"
Expand Down
19 changes: 10 additions & 9 deletions src/components/design/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import Circles from './Circles.vue';
import MyName from './MyName.vue';
import Star from './Star.vue';
import LoadingScreen from './LoadingScreen.vue';
import SamsungError from './SamsungError.vue';
import Marquee from './Marquee.vue';
import Slider from './Slider.vue';
import Footer from './Footer.vue';
import { defineAsyncComponent } from 'vue';

import Cursor from './Cursor.vue';
const Circles = defineAsyncComponent(() => import('./Circles.vue'));
const MyName = defineAsyncComponent(() => import('./MyName.vue'));
const Star = defineAsyncComponent(() => import('./Star.vue'));
const LoadingScreen = defineAsyncComponent(() => import('./LoadingScreen.vue'));
const SamsungError = defineAsyncComponent(() => import('./SamsungError.vue'));
const Marquee = defineAsyncComponent(() => import('./Marquee.vue'));
const Slider = defineAsyncComponent(() => import('./Slider.vue'));
const Footer = defineAsyncComponent(() => import('./Footer.vue'));
const Cursor = defineAsyncComponent(() => import('./Cursor.vue'));

export {
Circles,
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/People.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- common-padding -->
<section
id="testimonials-section"
class="common-padding relative mx-auto min-h-svh overflow-y-clip py-0 will-change-transform"
class="common-padding relative mx-auto min-h-svh overflow-y-clip py-0 will-change-auto"
>
<div
class="grid w-full grid-cols-12 border-b-[1px] border-flax-smoke-300 pb-[clamp(2.25rem,2.1786rem_+_0.3571vi,2.5rem)]"
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/aboutMe.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<section
id="about-me-section"
class="common-padding relative z-10 overflow-y-clip rounded-b-3xl bg-[#0B0B0A] text-flax-smoke-200 shadow-2xl will-change-transform sm:mt-0"
class="common-padding relative z-10 overflow-y-clip rounded-b-3xl bg-[#0B0B0A] text-flax-smoke-200 shadow-2xl will-change-auto sm:mt-0"
>
<div class="md:column-gap grid grid-cols-12">
<div class="hide-on-mobile overflow-hidden md:col-span-4">
Expand Down
3 changes: 2 additions & 1 deletion src/components/sections/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { defineAsyncComponent } from 'vue';

import Hero from './Hero.vue';
import Contact from './Contact.vue';

const Services = defineAsyncComponent(() => import('./Services.vue'));
const Works = defineAsyncComponent(() => import('./Works.vue'));
const aboutMe = defineAsyncComponent(() => import('./aboutMe.vue'));
const People = defineAsyncComponent(() => import('./People.vue'));
const Contact = defineAsyncComponent(() => import('./Contact.vue'));
// const Contact = defineAsyncComponent(() => import('./Contact.vue'));

export { Hero, Services, Works, aboutMe, People, Contact };

0 comments on commit 0af69c1

Please sign in to comment.