Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new fixes #35

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion minireset.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
/*! minireset.css v0.0.8 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
Expand All @@ -15,6 +15,7 @@ legend,
textarea,
pre,
iframe,
menu
hr,
h1,
h2,
Expand All @@ -40,6 +41,15 @@ ul {
list-style: none;
}

button {
font-size: 13px;
font-family: inherit;
}

input:invalid {
box-shadow: none;
}

button,
input,
select {
Expand Down
2 changes: 1 addition & 1 deletion minireset.css.lit.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css } from 'lit-element';

var minireset_min = css`/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}`;
var minireset_min = css`/*! minireset.css v0.0.8 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button{font-size:13px;font-family:inherit}input:invalid{box-shadow:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}`;

export { minireset_min as minireset };
2 changes: 1 addition & 1 deletion minireset.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion minireset.sass
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
/*! minireset.css v0.0.8 | MIT License | github.com/jgthms/minireset.css */
// Blocks
html,
body,
Expand All @@ -16,6 +16,7 @@ legend,
textarea,
pre,
iframe,
menu,
hr,
h1,
h2,
Expand All @@ -41,6 +42,13 @@ ul
list-style: none

// Form
button
font-size: 13px
font-family: inherit

input:invalid
box-shadow: none

button,
input,
select
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minireset.css",
"version": "0.0.7",
"version": "0.0.8",
"description": "A tiny modern CSS reset",
"main": "minireset.css",
"scripts": {
Expand Down