diff options
| author | mo khan <mo@mokhan.ca> | 2013-07-23 14:29:38 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-07-23 14:29:38 -0600 |
| commit | a13b4ae08cd0e7f6aa61f3bf256f089277c30506 (patch) | |
| tree | 168c9717e3e93335a8b4c40568015387e62da0a7 | |
| parent | 99b19f57ed8e08f5b2094c9b7175e7dd382515e7 (diff) | |
fix asset paths to logo.png
| -rw-r--r-- | app/assets/stylesheets/custom.css.scss | 2 | ||||
| -rw-r--r-- | app/assets/stylesheets/media-queries.css.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/custom.css.scss b/app/assets/stylesheets/custom.css.scss index 7d67e79..cf31633 100644 --- a/app/assets/stylesheets/custom.css.scss +++ b/app/assets/stylesheets/custom.css.scss @@ -25,7 +25,7 @@ footer{ } h1#logo{ - background: transparent url('/assets/utility-belt/logo.png') no-repeat 0 0; + background: transparent asset-url('utility-belt/logo.png') no-repeat 0 0; width: 313px; height: 86px; text-indent: -9999px; diff --git a/app/assets/stylesheets/media-queries.css.scss b/app/assets/stylesheets/media-queries.css.scss index de3348a..28834fe 100644 --- a/app/assets/stylesheets/media-queries.css.scss +++ b/app/assets/stylesheets/media-queries.css.scss @@ -35,7 +35,7 @@ footer{ width: 100%; margin: 0;} #main{ padding: 0 20px; } h1#logo { - background: transparent url('/assets/mobile/logo.png') no-repeat 0 0; + background: transparent asset-url('mobile/logo.png') no-repeat 0 0; width: 250px; height: 69px; } |
