| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* stylelint-disable at-rule-no-unknown */
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- view {
- box-sizing: border-box;
- text-decoration: none;
- letter-spacing: 0.5px;
- }
- [hidden] {
- display: none !important;
- }
- image {
- display: block;
- height: auto;
- }
- button {
- position: relative;
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- overflow: hidden;
- line-height: normal;
- text-align: center;
- text-decoration: none;
- background-color: #f8f8f8;
- border: unset;
- border-radius: 0;
- -webkit-tap-highlight-color: transparent;
- &::after {
- width: auto;
- height: auto;
- border: unset;
- }
- }
|