简体   繁体   中英

React reusing styles (css/scss)

I have a .scss file in src/assets/css/button.module.css

simplified content below

.btn:visited{
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
}

I want to use this style in multiple components. How can i import the css to required component

I tried importing this in another scss as below

@import url('../../assets/css/button.module.scss');

But the the styles are not getting loaded. Any advice please

Try using @import '../../assets/css/button.module.scss'

If does not work try using partials

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM