Giter VIP home page Giter VIP logo

Comments (2)

xymostech avatar xymostech commented on June 11, 2024

Aphrodite class names shouldn't interact with other external class names. Are you talking about the React Router Link component? It looks like it does concatenation to generate classes, which isn't going to work with Aphrodite. It shouldn't be too hard to make a version of Link that does work with Aphrodite: AphroditeLink.jsx which you'd use like:

<AphroditeLink to={...} style={styles.link} activeStyle={styles.linkActive}>
    Text
</AphroditeLink>

const styles = StyleSheet.create({
    link: {
        color: "black",
    },

    linkActive: {
        color: "red",
    },
});

from aphrodite.

acomito avatar acomito commented on June 11, 2024

I'm dealing with this same issue. I'm mainly running into problems with applying a cursor: pointer to Links, but changing colors on hover seems to work.

Thanks for posting the AphroditeLink.

I guess the downside is you would have to make sure you keep your custom <AphroditeLink /> up-to-date as react-router's link changes (although it seems to be more stable at the time I am writing this).

I may just add a style to my scss as I want a pointer on 100% of content wrapped in Link (so far at least).

from aphrodite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.