Skip to content

Commit b3d61c7

Browse files
committed
fix: formatting
1 parent 0f1de34 commit b3d61c7

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ workflows:
110110
- prerelease:
111111
context: npm-deploy
112112
requires:
113-
- build
113+
- tests
114114
filters:
115115
branches:
116116
only:

packages/styles/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
These are the basic guidelines behind this project.
66

7-
- based in BEM but reinterpreted for sass and vue
8-
- prefixes prevent the collision with vendor styling
9-
- the "x" stands for xamu
7+
- based in BEM but reinterpreted for sass and vue
8+
- prefixes prevent the collision with vendor styling
9+
- the "x" stands for xamu
1010

1111
Explore the [docs](https://styles.xamu.com.co/) or learn how to setup the project for development at: [Setup](SETUP.md)
1212

1313
Older package names
1414

15-
- @xamu-co/style-system
16-
- @xamu-co/styles
15+
- @xamu-co/style-system
16+
- @xamu-co/styles
1717

1818
#Xamu UI, style systemElements & layouts:
1919

@@ -210,8 +210,8 @@ We are following a similar approach to the tailwind framework (only for global m
210210
}
211211
```
212212

213-
- **xs**: 358px, extra small, enabled in specific cases
214-
- **sm**: 576px, small, enabled in specific cases
215-
- **md**: 768px, medium
216-
- **lg**: 1080px, large, enabled in specific cases
217-
- **xl**: 1280px, extralarge
213+
- **xs**: 358px, extra small, enabled in specific cases
214+
- **sm**: 576px, small, enabled in specific cases
215+
- **md**: 768px, medium
216+
- **lg**: 1080px, large, enabled in specific cases
217+
- **xl**: 1280px, extralarge

packages/styles/SETUP.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Sass is an amazing preprocesor but some of their rules could become missused
2727

2828
#### Ampersand usage is allowed for modifiers & similar
2929

30-
- This is because usually you would be only searching for the element or the modifier name
31-
- As you can see this doesn't break the first rule
30+
- This is because usually you would be only searching for the element or the modifier name
31+
- As you can see this doesn't break the first rule
3232

3333
```scss
3434
.x-elementName {
@@ -43,7 +43,7 @@ Sass is an amazing preprocesor but some of their rules could become missused
4343

4444
#### For conditional modifiers prepending is prefered
4545

46-
- This limits the nesting and shows the required modifier
46+
- This limits the nesting and shows the required modifier
4747

4848
```scss
4949
.x-elementName {
@@ -58,13 +58,13 @@ Sass is an amazing preprocesor but some of their rules could become missused
5858

5959
#### Each property should follow the next order
6060

61-
- Tag, element or layout (a, .x-elementname, etc...)
62-
- Pseudoselectors (:hover, :focus, etc...)
63-
- Statuses (.is--statusname, etc...)
64-
- Modifiers (.--modifiername-value, etc...)
65-
- Subelements or childs
66-
- Overwrites
67-
- Media queries
61+
- Tag, element or layout (a, .x-elementname, etc...)
62+
- Pseudoselectors (:hover, :focus, etc...)
63+
- Statuses (.is--statusname, etc...)
64+
- Modifiers (.--modifiername-value, etc...)
65+
- Subelements or childs
66+
- Overwrites
67+
- Media queries
6868

6969
#### And for each grouped rules should go in the end
7070

0 commit comments

Comments
 (0)