Commit 700c9590 authored by Abdullah Yassin's avatar Abdullah Yassin
Browse files

Issue #3293118: Add gitignore file and rename files and libraries to vartheme bs5

parent fcc57223
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+7 −0
Original line number Diff line number Diff line
# Ignore SASS files
/.sass-cache
.DS_Store
*.codekit
.idea
node_modules
config/proxy.js
 No newline at end of file

config/proxy.js

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
const proxy = 'http://localhost/dev/varbase10x_radix/docroot/';

module.exports = {
	proxy: proxy,
};
+2 −2
Original line number Diff line number Diff line
# Schema for the configuration files of the Radix Subtheme theme.

radix_subtheme.settings:
vartheme_bs5.settings:
  type: theme_settings
  label: 'Radix Subtheme settings'
  label: "Vartheme BS5 settings"
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
 * Implements hook_library_info_build().
 * Automatically creates components libraries (Not visible in theme's libraries.yml file)
 * You can directly use the component name as a library, f.x
 *  {{ attach_library('radix_subtheme/block') }}.
 *  {{ attach_library('vartheme_bs5/block') }}.
 */
function vartheme_bs5_library_info_build() {
  $extensions = ['css', 'js'];
+15 −15
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
 * - utility_classes: An array of utility classes.
 */
#}
{{ attach_library('radix_subtheme/block') }}
{{ attach_library('vartheme_bs5/block') }}
{% set classes = [
  'block',
  bundle ? 'block--' ~ bundle|clean_class,
Loading