diff options
Diffstat (limited to 'core/misc/components/reset-appearance.module.css')
-rw-r--r-- | core/misc/components/reset-appearance.module.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/misc/components/reset-appearance.module.css b/core/misc/components/reset-appearance.module.css new file mode 100644 index 00000000000..59741a85ce8 --- /dev/null +++ b/core/misc/components/reset-appearance.module.css @@ -0,0 +1,14 @@ +/* + * @file + * Utility class to remove browser styles, especially for button. + */ + +.reset-appearance { + margin: 0; + padding: 0; + border: 0 none; + background: transparent; + line-height: inherit; + -webkit-appearance: none; + appearance: none; +} |