1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

move scss folder under popup

This commit is contained in:
Kyle Spearrin
2018-04-10 22:20:50 -04:00
parent 056359c90a
commit bd6eab174c
10 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ const paths = {
coverage: './coverage/', coverage: './coverage/',
npmDir: './node_modules/', npmDir: './node_modules/',
popupDir: './src/popup/', popupDir: './src/popup/',
cssDir: './src/css/' cssDir: './src/popup/css/'
}; };
const filters = { const filters = {

View File

@@ -2,7 +2,7 @@ import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
// tslint:disable-next-line // tslint:disable-next-line
require('../scss/popup.scss'); require('./scss/popup.scss');
// tslint:disable-next-line // tslint:disable-next-line
require('../scripts/duo.js'); require('../scripts/duo.js');

View File

@@ -1,4 +1,4 @@
@import "variables.scss"; @import "variables.scss";
small { small {
font-size: $font-size-small; font-size: $font-size-small;
@@ -76,7 +76,7 @@ small {
} }
#duo-frame { #duo-frame {
background: url('../popup/images/loading.svg') 0 0 no-repeat; background: url('../images/loading.svg') 0 0 no-repeat;
width: 100%; width: 100%;
height: 470px; height: 470px;
margin-bottom: -10px; margin-bottom: -10px;