-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from DaPulse/stories/orr/cleanup-and-alignment
Stories/orr/cleanup and alignment
- Loading branch information
Showing
54 changed files
with
617 additions
and
1,772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://style.monday.beer | ||
https://style.monday.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import "../../styles/colors.scss"; | ||
@import "../../styles/themes.scss"; | ||
|
||
{{dashCase componentName}}--wrapper { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.monday-style-story-wrapper { | ||
width: 1080px; | ||
width: 920px; | ||
margin: 0 auto; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import "../../../styles/colors.scss"; | ||
@import "../../../styles/themes.scss"; | ||
|
||
|
||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import "../../styles/colors.scss"; | ||
@import "../../styles/themes.scss"; | ||
|
||
.icon_component { | ||
position: relative; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.loader-size-sm { | ||
width: 32px; | ||
height: 32px; | ||
} | ||
.loader-size-md { | ||
width: 40px; | ||
height: 40px; | ||
} | ||
.loader-size-lg { | ||
width: 48px; | ||
height: 48px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from "react"; | ||
import Loader from "../Loader"; | ||
import LoaderStoryLine from "./LoaderStoryLine"; | ||
import { FlexLayout } from "../../storybook-helpers"; | ||
import StoryWrapper from "../../../StoryBookComponents/StoryWrapper/StoryWrapper"; | ||
|
||
export const Sizes = () => { | ||
return ( | ||
<StoryWrapper> | ||
<div className="story-title">Sizes</div> | ||
<FlexLayout spaceBetween> | ||
<LoaderStoryLine title="Small - 32px"> | ||
<Loader svgClassName="loader-size-sm" /> | ||
</LoaderStoryLine> | ||
</FlexLayout> | ||
<FlexLayout spaceBetween> | ||
<LoaderStoryLine title="Medium - 40px"> | ||
<Loader svgClassName="loader-size-md" /> | ||
</LoaderStoryLine> | ||
</FlexLayout> | ||
<FlexLayout spaceBetween> | ||
<LoaderStoryLine title="Large - 48px"> | ||
<Loader svgClassName="loader-size-lg" /> | ||
</LoaderStoryLine> | ||
</FlexLayout> | ||
</StoryWrapper> | ||
); | ||
}; | ||
|
||
export default { | ||
title: "Components/Loader", | ||
component: Loader | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export const SIZES = { | ||
SMALL: "s", | ||
MEDIUM: "md", | ||
LARGE: "l" | ||
}; | ||
|
||
export const TYPES = { | ||
SQUARE: "square", | ||
ROUND: "round", | ||
UNDERLINE: "underline" | ||
}; |
Oops, something went wrong.