Skip to content
Snippets Groups Projects
globals.css 839 B
Newer Older
  • Learn to ignore specific revisions
  • @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
    
    
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
    
    
    @layer components {
      html {
        @apply bg-dark-800;
      }
    }
    
    
    #nprogress .bar {
      background: rgb(37 99 235) !important;
    }
    
    #nprogress .spinner-icon {
      border-top-color: rgb(37 99 235) !important;
      border-left-color: rgb(37 99 235) !important;
    }
    
    #nprogress .peg {
      box-shadow: 0 0 10px rgb(37 99 235), 0 0 5px rgb(37 99 235) !important;
    }