Skip to content

Instantly share code, notes, and snippets.

View chmelevskij's full-sized avatar
🥔
Potato is life

Tomas Chmelevskij chmelevskij

🥔
Potato is life
View GitHub Profile
enum Status {
Open = 'open',
InProgress = 'in-progress',
Complete = 'complete',
}
const InputSchema = new SimpleSchema({
status: {
type: String,
allowedValues: Object.values(Status),
@chmelevskij
chmelevskij / complete-reset.css
Last active November 5, 2020 07:25
Just a reset of stuff I constantly have to type in when doing web dev
*, *::after, *::before {
font-family: sans-serif;
box-sizing: border-box;
}
html, body {
padding: 0;
margin: 0;
}