mirror of
				https://github.com/valentineus/popov.link.git
				synced 2025-11-03 22:39:44 +03:00 
			
		
		
		
	chore: migrate sass imports to use (#49)
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
				
			|||||||
<style lang="scss">
 | 
					<style lang="scss">
 | 
				
			||||||
	@import "../scss/_variables.scss";
 | 
					        @use "../scss/variables" as *;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	header {
 | 
						header {
 | 
				
			||||||
		padding-bottom: 1rem;
 | 
							padding-bottom: 1rem;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,7 +12,7 @@ const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY"
 | 
				
			|||||||
---
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style lang="scss">
 | 
					<style lang="scss">
 | 
				
			||||||
	@import "../scss/_variables.scss";
 | 
					        @use "../scss/variables" as *;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	small {
 | 
						small {
 | 
				
			||||||
		font-size: $fontSizeBase * 0.75;
 | 
							font-size: $fontSizeBase * 0.75;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,7 +12,7 @@ const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY"
 | 
				
			|||||||
---
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style lang="scss">
 | 
					<style lang="scss">
 | 
				
			||||||
	@import "../scss/_variables.scss";
 | 
					        @use "../scss/variables" as *;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	a {
 | 
						a {
 | 
				
			||||||
		color: $colorText;
 | 
							color: $colorText;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,7 +23,7 @@ const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY"
 | 
				
			|||||||
---
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style lang="scss">
 | 
					<style lang="scss">
 | 
				
			||||||
	@import "../../scss/_variables.scss";
 | 
					        @use "../../scss/variables" as *;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	p {
 | 
						p {
 | 
				
			||||||
		opacity: 0.5;
 | 
							opacity: 0.5;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,5 @@
 | 
				
			|||||||
 | 
					@use "variables" as *;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
*,
 | 
					*,
 | 
				
			||||||
*::after,
 | 
					*::after,
 | 
				
			||||||
*::before {
 | 
					*::before {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,3 @@
 | 
				
			|||||||
@import "variables";
 | 
					@use "variables";
 | 
				
			||||||
@import "framework";
 | 
					@use "framework";
 | 
				
			||||||
@import "print";
 | 
					@use "print";
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user