Set the size of a textarea correctly

This commit is contained in:
Jonny Barnes 2016-07-18 13:27:32 +01:00
parent 89a1e9566a
commit f2aa009f6f
7 changed files with 12 additions and 3 deletions

View file

@ -24,6 +24,11 @@ textarea {
color: $base3;
border: 1px solid $base3;
border-radius: 4px;
font-size: 1em;
}
textarea {
font-size: 1.2em; //textarea doesnt resize with the rest
}
button:hover {

View file

@ -1,6 +1,5 @@
//layout.scss
//boxes
html {
box-sizing: border-box;
}
@ -33,6 +32,8 @@ nav {
padding-left: 2em;
}
// notes
.note {
background-color: $base2;
box-shadow: 0 0 10px 2px $base1;