Commit a2157610 authored by Abdullah Yassin's avatar Abdullah Yassin
Browse files

Issue #3293118: Sync components with Radix components

parent 287ab624
Loading
Loading
Loading
Loading

src/components/.gitkeep

deleted100644 → 0
+0 −0

Empty file deleted.

src/components/README.md

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
## How to maintain the components directory
For a quick start you may copy/paste all the components or those you need from the parent radix theme
under `radix/src/components` into this directory

Also make sure that you import the `init.scss` into your components SASS file, the `block` component has been moved into the subtheme as an example
 No newline at end of file

src/components/block/block.js

deleted100644 → 0
+0 −0

Empty file deleted.

src/components/block/block.scss

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
@import "../../scss/init";
 No newline at end of file
+14 −15
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@
 * - utility_classes: An array of utility classes.
 */
#}
{{ attach_library('vartheme_bs5/block') }}
{% set classes = [
  'block',
  bundle ? 'block--' ~ bundle|clean_class,
Loading