File tree Expand file tree Collapse file tree 8 files changed +28
-27
lines changed
stylesheets/better_together Expand file tree Collapse file tree 8 files changed +28
-27
lines changed Original file line number Diff line number Diff line change 44//= link_tree ../stylesheets .css
55//= link_tree ../../../vendor/stylesheets .css
66//= link_tree ../stylesheets .scss
7+ //= link better_together/mailer.css
78//= link_tree ../images
89
910//= link actioncable.js
Original file line number Diff line number Diff line change 1414 *= require_self
1515 */
1616
17- @import ' theme' ;
17+ @use ' theme' as * ;
1818
1919// Import Bootstrap and Font Awesome
2020
21- @import ' bootstrap' ;
22- @import ' cards' ;
23- @import ' devise' ;
24- @import ' font-awesome' ;
25- @import ' actiontext' ;
26- @import ' contact_details' ;
27- @import ' content_blocks' ;
28- @import ' conversations' ;
29- @import ' forms' ;
30- @import ' image-galleries' ;
31- @import ' maps' ;
32- @import ' metrics' ;
33- @import ' navigation' ;
34- @import ' notifications' ;
35- @import ' profiles' ;
36- @import ' simple_calendar' ;
37- @import ' share' ;
38- @import ' sidebar_nav' ;
39- @import ' trix-extensions/richtext' ;
21+ @use ' bootstrap' as * ;
22+ @use ' cards' ;
23+ @use ' devise' ;
24+ @use ' font-awesome' ;
25+ @use ' actiontext' ;
26+ @use ' contact_details' ;
27+ @use ' content_blocks' ;
28+ @use ' conversations' ;
29+ @use ' forms' ;
30+ @use ' image-galleries' ;
31+ @use ' maps' ;
32+ @use ' metrics' ;
33+ @use ' navigation' ;
34+ @use ' notifications' ;
35+ @use ' profiles' ;
36+ @use ' simple_calendar' ;
37+ @use ' share' ;
38+ @use ' sidebar_nav' ;
39+ @use ' trix-extensions/richtext' ;
4040
4141// Styles that use the variables
4242.text-opposite-theme {
Original file line number Diff line number Diff line change 1- @import ' theme' ;
1+ @use ' theme' as * ;
22
33.contact-detail-item {
44 margin-bottom : 15px ;
Original file line number Diff line number Diff line change 1- @import " theme" ;
1+ @use " theme" as * ;
22
33.required-indicator {
44 color : $danger ;
Original file line number Diff line number Diff line change 1-
2- @import ' theme' ;
1+ @use ' theme' as * ;
32
43.social-share-buttons {
54 margin-top : 40px ;
Original file line number Diff line number Diff line change 1- @import ' theme' ;
1+ @use ' theme' as * ;
22
33#sidebar_nav {
44 // Sidebar heading styles
Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ class Application < Rails::Application
2323 # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
2424 # config.time_zone = 'Central Time (US & Canada)'
2525
26- config . active_storage . replace_on_assign_to_many = true
26+ # Use the latest cache format and remove deprecated Active Storage setting
27+ config . active_support . cache_format_version = 7.1
2728
2829 config . generators do |g |
2930 g . orm :active_record , primary_key_type : :uuid
Original file line number Diff line number Diff line change 4747 config . after { Warden . test_reset! }
4848
4949 # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
50- config . fixture_path = " #{ Rails . root } / spec/fixtures"
50+ config . fixture_paths = [ Rails . root . join ( ' spec/fixtures' ) ]
5151
5252 # If you're not using ActiveRecord, or you'd prefer not to run each of your
5353 # examples within a transaction, remove the following line or assign false
You can’t perform that action at this time.
0 commit comments