frontview 2.2.3.pre.beta → 2.2.4.pre.beta

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28bf6cc51c4e4c09987d6c30fa0c253fe5d00aea07f44d6522f91be4fe0e57c3
4
- data.tar.gz: '0332123538e918c16de778220d1190f13875250c8bf4908efaac0398488be41a'
3
+ metadata.gz: 46736be2a6c5c33de8d199d7804fa648d7eeba9706102fd651ec6d699102f5f4
4
+ data.tar.gz: b0506b7eda097db768289826beb1d59066b4d77e81b0aeb60b2047d71e7453b8
5
5
  SHA512:
6
- metadata.gz: bd2c286d4bb65514963070a652dadcd2a58adbf576313086be494dea594ad6b8d4a3847eb72ad1701a015b952cba2c5cdc7cf5a8d5fc9de7232aaeb2afbfb286
7
- data.tar.gz: 9006df4fe4dddf127f1b7376633f73355542a8e0bfe4b7a9e04b1e0d3e21746f71315e3f9a9fbbe612a4cfbb4315e6dfac3c0d2995538789d705dc80491efec6
6
+ metadata.gz: 6715fa90bf73ba1cbd388754c6fd2ae90627d1328895f19a911a817a4e89011507a80c1ca60dcfdb2504d2ee762d4f4db419594185a49558800db35208017830
7
+ data.tar.gz: f3ae82c4671291e143c3e837f4ede956ab75eaf4a5b32471703728b0a829c669ae1ce586f2ab8281b1d31f7e1b42dffd5becd2563457c4d6a54661cbdab9483f
Binary file
@@ -2,6 +2,11 @@ module Frontview
2
2
  module Contents
3
3
  class StyleContent < Rails::Generators::Base
4
4
  def write_in_style
5
+
6
+ Dir.mkdir("app/assets/stylesheets/css") unless
7
+ File.exists?("app/assets/stylesheets/css")
8
+ file = File.new("app/assets/stylesheets/css/style.css", "w+")
9
+
5
10
  File.open("app/assets/stylesheets/css/style.css", "w+") {
6
11
  |file| file.puts(
7
12
  '.main_h {
@@ -184,7 +189,14 @@ p {
184
189
  line-height: 2;
185
190
  }
186
191
 
192
+ .content {
193
+ padding: 50px 2% 40px;
194
+ border-bottom: dotted 1px #212f3d;
195
+ }
187
196
 
197
+ .bottom-content {
198
+ padding: 50px 2% 40px;
199
+ }
188
200
 
189
201
  .hero {
190
202
  position: relative;
@@ -374,7 +386,7 @@ footer {
374
386
  top: 50%;
375
387
  left: 10px;
376
388
  border-top: 1px solid #ccc;
377
-
389
+ width: calc(100% - 20px);
378
390
  }
379
391
  .footer-social-overlap {
380
392
  position: relative;
@@ -1,3 +1,3 @@
1
1
  module Frontview
2
- VERSION = "2.2.3-beta"
2
+ VERSION = "2.2.4-beta"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: frontview
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.3.pre.beta
4
+ version: 2.2.4.pre.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - elibiz443
@@ -125,6 +125,7 @@ files:
125
125
  - assets/sample5.png
126
126
  - bin/console
127
127
  - bin/setup
128
+ - frontview-2.2.3.pre.beta.gem
128
129
  - frontview.gemspec
129
130
  - lib/frontview.rb
130
131
  - lib/frontview/contents/alerts_content.rb