A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);| .. luego de haber hecho tus cambios sin aplicar add ni commit y querés aplicar pull se hace lo siguiente: | |
| el git stash almacena una rama temporal donde toma tus cambios | |
| $ git stash | |
| aplicamos el pull correspondiente.. | |
| $ git pull origin [mi-rama] | |
| y luego retornamos los cambios de la rama temporal | |
| $ git stash apply stash@{0} |
Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...
Italics *italics* or _italics_
Underline italics __*underline italics*__
To enable darkmode variants simply add the following lines to the theme/extend section of your tailwind config
screens: {
'dark-mode': {'raw': '(prefers-color-scheme: dark)'},
},
This enables the dark-mode variant for your classes. You are now able to use dark-mode:bg-gray-900 on your site.
| const type = "website"; | |
| const url = "https://bobross.com"; | |
| const title = "My Amazing Blog on The Joy of Painting"; | |
| const description = "Articles focused on the beautiful art of landscape painting."; | |
| const mainImage = "/a-lovely-image.png"; | |
| export default (meta) => { | |
| return [ | |
| { | |
| hid: "description", |
NOTICE: This guide will help you set ssh keys for GitHub and GitLab. However, this is not going to change your commit
user.nameoruser.email. If you need to change those for specific repositories, just run the following commands while in your repository:
git config user.name "Your Name Here"
git config user.email [email protected]For more info, see this answer. Also, keep in mind this only changes the
.gitfolder inside your repository which never gets added/committed/pushed/uploaded.
I recently had to manage two ssh keys (one for Github and one for Gitlab). I did some research to find the best solution. I am justing putting the pieces together here.