* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1.6;
	font-family: "Nunito", sans-serif;
}
html {
	height: 100%;
}

body {
	height: 100%;
	width: 100%;
	font-family: "Nunito", sans-serif;
	position: relative;
	overflow-x: hidden;
}

#app {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

input,
button,
textarea {
	outline: none;
	border: none;
	background: none;
}

button {
	cursor: pointer;
}

textarea {
	resize: none;
	line-height: 1.5;
	min-height: 5em;
	max-height: 50vh;
	width: 100%;
}

span {
	display: block;
}

.close-btn,
.edit-post,
.view-post,
.del {
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	-webkit-user-select: none;
}

.freeze {
	overflow-y: hidden !important;
}
