|
https://codesandbox.io/s/github/uyriq/basic-17.1?file=/src/components/MainDashboard.module.css Good afternoon, I do not know whether to refer to the section QA or should make a new issue. The essence of my question is the following: in the REACT application I use styles. in the style file, for example, in MainDashboard.module.css I write .mainCircle {
width: calc(100% - 30px);
height: 100%;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
alignment-content: center;
background: url("../images/markers.svg") center no-repeat;
background-size: contain;
}this |
Answered by
aj-foster
Jul 25, 2022
Replies: 1 comment
|
If you move your |
0 replies
Answer selected by
uyriq
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you move your
imagesfolder topublic, the SVGs will render correctly.publicis the root folder for serving statics in an app like this. 🙂