mirror of
https://github.com/bitwarden/browser
synced 2024-12-25 09:32:06 +01:00
[CL-137] add temporary CSS reset for cross-client styles (#6626)
This commit is contained in:
parent
e9f0c07b02
commit
dbcd369ba2
16
libs/components/src/reset.css
Normal file
16
libs/components/src/reset.css
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/**
|
||||||
|
* Reset styles to be consistent with Bootstrap reset
|
||||||
|
* Reassess when Bootstrap is removed and Tailwind preflight is added
|
||||||
|
*/
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
min-width: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: inherit;
|
||||||
|
text-align: -webkit-match-parent;
|
||||||
|
}
|
@ -1,4 +0,0 @@
|
|||||||
th {
|
|
||||||
text-align: inherit;
|
|
||||||
text-align: -webkit-match-parent;
|
|
||||||
}
|
|
@ -1,3 +1,5 @@
|
|||||||
|
@import "./reset.css";
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--color-transparent-hover: rgb(0 0 0 / 0.03);
|
--color-transparent-hover: rgb(0 0 0 / 0.03);
|
||||||
|
|
||||||
@ -159,7 +161,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@import "./search/search.component.css";
|
@import "./search/search.component.css";
|
||||||
@import "./table/table.component.css";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* tw-break-words does not work with table cells:
|
* tw-break-words does not work with table cells:
|
||||||
|
Loading…
Reference in New Issue
Block a user