style: minor changes

This commit is contained in:
log101 2024-05-07 11:55:18 +03:00
parent f68fc049ea
commit 90c92bb71a
5 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
--- ---
title: "Bir Komponentin Serüveni: Astro" title: "Bir Komponentin Serüveni: Astro"
summary: Yazdığınız komponentlere ne olur? Bu yazıda Astro komponentlerinin serüvenlerin bir göz atıyoruz! summary: Yazdığınız komponentlere ne olur? Bu yazıda Astro komponentlerinin serüvenlerine göz atıyoruz!
category: Teknik Yazı category: Teknik Yazı
date: 2024-04-01 date: 2024-04-01
tags: tags:

View File

@ -29,7 +29,7 @@ const { title } = Astro.props;
--h5-desktop: 1.563rem; --h5-desktop: 1.563rem;
--h6-desktop: 1.25rem; --h6-desktop: 1.25rem;
--small-desktop: 0.8rem; --small-desktop: 0.8rem;
font-size: 18px; font-size: 20px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif; sans-serif;
background-color: #f5fffa; background-color: #f5fffa;

View File

@ -5,7 +5,7 @@ import Layout from "../layouts/Layout.astro";
import "../styles/header.css"; import "../styles/header.css";
import "../styles/home.css"; import "../styles/home.css";
import { getCollection, getEntry } from "astro:content"; import { getCollection } from "astro:content";
const allTeknikPosts = await getCollection("blog"); const allTeknikPosts = await getCollection("blog");
--- ---

View File

@ -1,5 +1,5 @@
.container { .container {
width: 710px; width: 750px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 24px; gap: 24px;

View File

@ -14,6 +14,7 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
color: #2f4f4f; color: #2f4f4f;
letter-spacing: 0.05em;
} }
.post-title { .post-title {