ng7 icon indicating copy to clipboard operation
ng7 copied to clipboard

Nav Bar css doesn't work

Open sanjibani opened this issue 6 years ago • 1 comments

Nav Bar css doesn't work, with the same code in styles.scss.

sanjibani avatar Dec 12 '18 16:12 sanjibani

The contributor has used scss in this repository and I think that you have selected css as a style type at the time of creating new project and if this is what you've done, either create a new project with style type scss and run the same code or in your styles.css file run the following code. @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

body, html { height: 100%; margin: 0 auto; }

body { font-family: 'Montserrat'; font-size: 18px; }

a { text-decoration: none; }

.container { width: 80%; margin: 0 auto; padding: 1.3em; display: grid; grid-template-columns: 30% auto;

}

.container a{

    color: white;

}

section { width: 80%; margin: 0 auto; padding: 2em; }

PrathamDogra avatar Feb 12 '19 10:02 PrathamDogra