copycat 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -381,6 +381,10 @@ select {
381
381
  margin: .2em;
382
382
  }
383
383
 
384
+ textarea {
385
+ font-size: 1.2em;
386
+ }
387
+
384
388
  select {
385
389
  width: 4em;
386
390
  }
@@ -407,11 +411,12 @@ body {
407
411
  background-color: #FFFDF7;
408
412
  width: 800px;
409
413
  margin: 0 auto;
410
- padding: .5em;
414
+ padding: 2em;
411
415
  }
412
416
  #header {
413
417
  width: 100%;
414
418
  height: 4em;
419
+ margin-bottom: 1em;
415
420
  }
416
421
 
417
422
  #header h1 {
@@ -423,7 +428,6 @@ body {
423
428
 
424
429
  #header ul {
425
430
  float: right;
426
- padding-top: 2%;
427
431
  list-style-type: none;
428
432
  }
429
433
 
@@ -1,4 +1,11 @@
1
1
  module Copycat
2
2
  class Engine < ::Rails::Engine
3
+
4
+ if Rails.version >= '3.1'
5
+ initializer :assets, :group => :all do
6
+ Rails.application.config.assets.precompile += %w(copycat_engine.css)
7
+ end
8
+ end
9
+
3
10
  end
4
11
  end
@@ -1,3 +1,3 @@
1
1
  module Copycat
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end