Skip to content

Instantly share code, notes, and snippets.

View Programming-School-Pro-Coding's full-sized avatar
🌍
Contributing from home

Programming-School Programming-School-Pro-Coding

🌍
Contributing from home
View GitHub Profile
@adrianhajdin
adrianhajdin / globals.css
Created July 2, 2022 13:30
Build and Deploy a Full Stack TikTok Clone Application and Master TypeScript | Full Course (Part 1)
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
padding: 0;
margin: 0;
box-sizing: border-box;
}
* {
transition: all 0.5s;
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
@adrianhajdin
adrianhajdin / Assets
Created April 1, 2022 12:00
React Native - NFT Marketplace
https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/adrianhajdin/react-native-nft-marketplace/tree/main/assets
@adrianhajdin
adrianhajdin / App.scss
Last active April 9, 2024 14:26
Build and Deploy the Ultimate Web Development Portfolio
.app {
background-color: var(--primary-color);
font-family: var(--font-base);
}
.app__whitebg {
background-color: var(--white-color);
}
.app__primarybg {
@vanpeerdevelopment
vanpeerdevelopment / remove-git-config.sh
Created January 28, 2014 18:52
Command to remove a git configuration.
# Remove repository configuration
git config --unset [key]
# Remove global configuration
git config --global --unset [key]
# Remove system configuration
git config --system --unset [key]