-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move styling v1 and v2 into common parent src folder (#103)
* chore: move styling v1 and v2 into common parent src folder * ci: build styles v2 into dist folder * refactor: move new files into src/v2
- Loading branch information
1 parent
2cb9a42
commit 2b9be9e
Showing
72 changed files
with
59 additions
and
18 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
39 changes: 39 additions & 0 deletions
39
src/v2/styles/LoadingIndicator/LoadingIndicator-layout.scss
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,39 @@ | ||
// todo: this is a copy of src/styles/LoadingIndicator.scss - find a shared folder for it | ||
.str-chat__loading-indicator { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
animation: rotate 1s linear infinite; | ||
|
||
@-webkit-keyframes rotate { | ||
from { | ||
-webkit-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
to { | ||
-webkit-transform: rotate(360deg); | ||
-o-transform: rotate(360deg); | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@keyframes rotate { | ||
from { | ||
-ms-transform: rotate(0deg); | ||
-moz-transform: rotate(0deg); | ||
-webkit-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
to { | ||
-ms-transform: rotate(360deg); | ||
-moz-transform: rotate(360deg); | ||
-webkit-transform: rotate(360deg); | ||
-o-transform: rotate(360deg); | ||
transform: rotate(360deg); | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 7 additions & 6 deletions
13
src-v2/styles/index.layout.scss → src/v2/styles/index.layout.scss
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,12 +1,13 @@ | ||
@use 'base'; | ||
@use 'theme-variables'; | ||
@use 'common'; | ||
|
||
@use 'common/CTAButton/CTAButton-layout'; | ||
@use 'common/CircleFAButton/CircleFAButton-layout'; | ||
@use 'ChannelList/ChannelList-layout'; | ||
@use 'ChannelPreview/ChannelPreview-layout'; | ||
@use 'Avatar/Avatar-layout'; | ||
@use 'Channel/Channel-layout'; | ||
@use 'MessageList/MessageList-layout'; | ||
@use 'ChannelHeader/ChannelHeader-layout'; | ||
@use 'ChannelList/ChannelList-layout'; | ||
@use 'ChannelPreview/ChannelPreview-layout'; | ||
@use 'common/CTAButton/CTAButton-layout'; | ||
@use 'common/CircleFAButton/CircleFAButton-layout'; | ||
@use 'LoadingIndicator/LoadingIndicator-layout'; | ||
@use 'MessageList/MessageList-layout'; | ||
@use 'Thread/Thread-layout'; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.