biscuit-rails 0.1.3 → 0.1.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7054c18a5049310cc03f684c2d8ce5c2a835276ffc2ac5c7fb7ad453a0683336
4
- data.tar.gz: 90b033ac9021dde624c9be3da900d3dedfb2697858ccafa536c28ba976f33a70
3
+ metadata.gz: ccf326f39e2cdccc7cb9991e0f9ad738b97ff3d1ca1837ea0793907e1cf07e72
4
+ data.tar.gz: f94e5fec99ef45102ac05d9523d68b1db95c2a61a13a331553419de7feb2dc46
5
5
  SHA512:
6
- metadata.gz: 438ed681f247bfcde15c397a53f1765ee984e799abf8634af90308a2b3dc64b12ca222965bbca5b3bee49b8428e1a57ec0b3f25d97f98e9bcf7ed46e4d17483d
7
- data.tar.gz: 9c1f5f8363f50d9da83f8a82184725dbeed20b98073146437d2d2443036b504db365f77a2551b2ed40cff2505e4d5cd89bc19a45268d0a6af571a994d3f774aa
6
+ metadata.gz: 37b281be185c6e46f19ada084760ec585ff2e144dd15c532a5d94188610809488fbafe6d7fcfb64881bcc87f54b5ee22876ac7f7809079197cbee408e999ca61
7
+ data.tar.gz: 32d9e8d34b824c355a190041c58d5fc6b33ad436ae9100b4babec40fb8585ca2031d0cc683d369590ca9fea6f9afe9972650a74a474448a06332df2def4e710e
data/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.4] - 2026-03-29
9
+
10
+ ### Fixed
11
+
12
+ - Incorrect CSS float on banner element causing layout issues
13
+ - Incorrect banner height at small viewport widths
14
+
15
+ ---
16
+
8
17
  ## [0.1.3] - 2026-03-28
9
18
 
10
19
  ### Fixed
@@ -26,12 +26,12 @@
26
26
  padding: var(--biscuit-padding);
27
27
  }
28
28
 
29
- .biscuit-banner[data-biscuit-position-value="bottom"] {
29
+ [data-biscuit-position-value="bottom"] .biscuit-banner {
30
30
  bottom: 0;
31
31
  box-shadow: var(--biscuit-shadow-bottom);
32
32
  }
33
33
 
34
- .biscuit-banner[data-biscuit-position-value="top"] {
34
+ [data-biscuit-position-value="top"] .biscuit-banner {
35
35
  top: 0;
36
36
  box-shadow: var(--biscuit-shadow-top);
37
37
  }
@@ -118,6 +118,7 @@
118
118
 
119
119
  @media (max-width: 640px) {
120
120
  .biscuit-banner__inner { flex-direction: column; align-items: flex-start; }
121
+ .biscuit-banner__message { flex-basis: auto; }
121
122
  .biscuit-banner__actions { width: 100%; }
122
123
  .biscuit-btn { flex: 1 1 auto; justify-content: center; }
123
124
  }
@@ -1,3 +1,3 @@
1
1
  module Biscuit
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: biscuit-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gareth James
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-03-28 00:00:00.000000000 Z
10
+ date: 2026-03-29 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails