Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Group variations): add Flex group variations to g… #130

Merged
merged 21 commits into from
Aug 30, 2023
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1c3a7ee
feat(Group variations): add item group and Flex group variations to g…
nileshgulia1 Apr 4, 2023
06d3067
use EditBlockWrapper from volto-group-block
nileshgulia1 Apr 5, 2023
5b8d508
fix import
nileshgulia1 Apr 5, 2023
6da8fb6
add volto-group-block as a dep
nileshgulia1 Apr 5, 2023
f0c604d
fix addons
nileshgulia1 Apr 5, 2023
0309d33
fix edge case
nileshgulia1 Apr 5, 2023
0d3bc7c
do not customize components
nileshgulia1 Apr 5, 2023
bda8aa1
remove(item group): only keep standard group flex variation
nileshgulia1 Apr 5, 2023
66f25ba
fix imports
nileshgulia1 Apr 5, 2023
33f0e4c
support custom number of columns
nileshgulia1 Apr 6, 2023
8d6628d
remove important tags, fix item css
nileshgulia1 Apr 6, 2023
0725396
fix(css): use children combinator instead of descendent
nileshgulia1 Apr 6, 2023
fccd9fc
adapt block copy paste in variation
nileshgulia1 Apr 6, 2023
27d5d40
Merge branch 'develop' into flexboxvariations
nileshgulia1 Apr 6, 2023
5a955d5
fix(flex): remove extra flex items and use parent flex column class
nileshgulia1 Apr 10, 2023
bc1934b
use styles directly from storybook
nileshgulia1 Apr 10, 2023
741ea08
fix(mobileWidth): inheriting from items.overrides, use less variables
nileshgulia1 Apr 17, 2023
4620074
fix warning
nileshgulia1 Apr 17, 2023
4bee77e
Merge branch 'develop' into flexboxvariations
nileshgulia1 Aug 30, 2023
aa63c20
cleanup editor-flex.less the rest of the css for view can go in items…
ichim-david Aug 30, 2023
322c26e
lint fix
ichim-david Aug 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove important tags, fix item css
  • Loading branch information
nileshgulia1 committed Apr 6, 2023
commit 8d6628d27c3aa7fa54d6c6d56a5096f94f7af7d3
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
}

.ui.items.flex-items-wrapper .item-col-3 {
width: 33% !important;
width: 33%;
}

.ui.items.flex-items-wrapper .item-col-4 {
width: 25% !important;
width: 25%;
}

.ui.items.row > [class*='item-col-'] {
margin: 2rem 0;
}

.ui.items .item,
.ui.items > .item,
[class*='item-col-'] {
display: flex;
min-height: 0px;
Expand Down