mirror of
				https://github.com/valentineus/popov.link.git
				synced 2025-11-04 06:49:45 +03:00 
			
		
		
		
	style: enhance Header component and update SCSS imports (#50)
- Improved the Header component by adding a site title with styling. - Wrapped navigation links in a div for better structure. - Updated SCSS imports across multiple components for consistency.
This commit is contained in:
		@@ -3,12 +3,25 @@
 | 
			
		||||
 | 
			
		||||
	header {
 | 
			
		||||
		padding-bottom: 1rem;
 | 
			
		||||
		position: relative;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	.site-title {
 | 
			
		||||
		color: $colorText;
 | 
			
		||||
		font-weight: bold;
 | 
			
		||||
		left: 0;
 | 
			
		||||
		position: absolute;
 | 
			
		||||
		text-decoration: none;
 | 
			
		||||
		top: 0;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	.nav-links {
 | 
			
		||||
		text-align: right;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	a {
 | 
			
		||||
		text-decoration: none;
 | 
			
		||||
		margin-right: 1.5rem;
 | 
			
		||||
		text-decoration: none;
 | 
			
		||||
 | 
			
		||||
		&:last-child {
 | 
			
		||||
			margin-right: 0;
 | 
			
		||||
@@ -17,6 +30,9 @@
 | 
			
		||||
</style>
 | 
			
		||||
 | 
			
		||||
<header>
 | 
			
		||||
	<a class="site-title" href="/">{import.meta.env.DEFAULT_TITLE}</a>
 | 
			
		||||
	<div class="nav-links">
 | 
			
		||||
		<a href="/">Home</a>
 | 
			
		||||
		<a href="/blog/">Blog</a>
 | 
			
		||||
	</div>
 | 
			
		||||
</header>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user