Kaydet (Commit) 39e32c39 authored tarafından Emincan Özcan's avatar Emincan Özcan

update

üst 07509009
This diff is collapsed.
{
"/js/app.js": "/js/app.js?id=f1f06dcc10414446afde",
"/css/app.css": "/css/app.css?id=485fb0ce85ce603f83b1"
"/css/app.css": "/css/app.css?id=64a72ccec600c6e4d7d9"
}
......@@ -8,7 +8,7 @@
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
<!-- Styles -->
<link rel="stylesheet" href="{{ mix('css/app.css') }}">
......
......@@ -11,7 +11,7 @@ module.exports = {
theme: {
extend: {
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
},
},
......
<!DOCTYPE html>
<html lang="">
<head>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<title>Pardus Kataliz</title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
......@@ -15,7 +15,9 @@
<Sidebar
class="sticky top-0 h-screen w-80 bg-gray-700 bg-opacity-25 flex-shrink-0"
/>
<router-view class="flex-1 bg-gray-900 mx-6" />
<transition name="fade">
<router-view class="flex-1 bg-gray-900 mx-6" />
</transition>
</div>
</template>
<script>
......@@ -51,3 +53,14 @@ export default {
},
};
</script>
<style>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>
......@@ -11,18 +11,18 @@
</div>
<div class="flex flex-col space-y-2 mt-2 px-4">
<router-link
class="px-4 block py-3 text-gray-200 font-medium w-full rounded-lg"
active-class="bg-gray-700 text-pardus-yellow shadow-lg"
class="px-4 block py-3 text-gray-200 font-bold w-full rounded-lg"
active-class="bg-gray-700 shadow-lg"
to="/"
>
<span class="font-medium">Alternatif Uygulamalar</span>
Alternatif Uygulamalar
</router-link>
<router-link
to="/app-packages"
class="px-4 block py-3 text-gray-200 font-medium w-full rounded-lg"
active-class="bg-gray-700 text-pardus-yellow shadow-lg"
class="px-4 block py-3 text-gray-200 font-bold w-full rounded-lg"
active-class="bg-gray-700 shadow-lg"
>
<span class="font-medium">Uygulama Paketleri</span>
Uygulama Paketleri
</router-link>
</div>
</div>
......
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
......@@ -6,6 +7,9 @@ module.exports = {
// spacing: {
// 128: "36rem",
// },
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
"pardus-yellow": "#ffcb01",
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment