-
Notifications
You must be signed in to change notification settings - Fork 80
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 #2143 from daostack/release
Release v0.10.16
- Loading branch information
Showing
17 changed files
with
2,148 additions
and
1,668 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
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
Large diffs are not rendered by default.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,101 +1,97 @@ | ||
.bhubRegContainer { | ||
width: 100% !important; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-content: flex-start; | ||
align-items: flex-start; | ||
padding: 10px; | ||
|
||
.bhubIcon { | ||
width: 100% !important; | ||
display: flex; | ||
text-align: left; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-content: flex-start; | ||
align-items: flex-start; | ||
padding: 10px; | ||
padding: 0 !important; | ||
margin-left: -40px !important; | ||
} | ||
|
||
.inputWrapper { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
|
||
.bhubIcon { | ||
width: 100% !important; | ||
display: flex; | ||
text-align: left; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
padding: 0 !important; | ||
margin-left: -40px !important; | ||
.emailInput { | ||
border-radius: 5px; | ||
height: 30px !important; | ||
padding: 5px; | ||
border: 1px solid #aaa; | ||
margin-right: 5px !important; | ||
} | ||
|
||
.inputWrapper { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
|
||
.emailInput { | ||
border-radius: 5px; | ||
height: 30px !important; | ||
padding: 5px; | ||
border: 1px solid #aaa; | ||
margin-right: 5px !important; | ||
} | ||
|
||
|
||
.sendButtonWrapper { | ||
height: 30px; | ||
display: inline-flex; | ||
justify-content: center; | ||
align-items: center; | ||
.sendButtonWrapper { | ||
height: 30px; | ||
display: inline-flex; | ||
justify-content: center; | ||
align-items: center; | ||
|
||
.sendButton { | ||
background-color: rgba(104, 155, 214, 1); | ||
border: 1px solid #333; | ||
border-radius: 5px; | ||
color: white; | ||
.sendButton { | ||
background-color: rgba(104, 155, 214, 1); | ||
border: 1px solid #333; | ||
border-radius: 5px; | ||
color: white; | ||
|
||
&:hover { | ||
background-color: rgba(3, 118, 255, 1); | ||
cursor: pointer; | ||
} | ||
} | ||
&:hover { | ||
background-color: rgba(3, 118, 255, 1); | ||
cursor: pointer; | ||
} | ||
} | ||
|
||
.sendButtonDisabled { | ||
background-color: #ccc; | ||
border: 1px solid #aaa; | ||
border-radius: 5px; | ||
color: #aaa; | ||
&:hover { | ||
cursor: default; | ||
} | ||
} | ||
.sendButtonDisabled { | ||
background-color: #ccc; | ||
border: 1px solid #aaa; | ||
border-radius: 5px; | ||
color: #aaa; | ||
&:hover { | ||
cursor: default; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.error { | ||
width: 100% !important; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
color: red; | ||
font-size: 1rem; | ||
} | ||
.error { | ||
width: 100% !important; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
color: red; | ||
font-size: 1rem; | ||
} | ||
|
||
|
||
.success { | ||
width: 100% !important; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
color: green; | ||
font-size: 1.3rem; | ||
.success { | ||
width: 100% !important; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
color: $accent-3; | ||
font-size: 1.3rem; | ||
|
||
.message { | ||
color: #333; | ||
font-size: .9rem; | ||
font-weight: 100; | ||
padding-left: 20px; | ||
} | ||
.message { | ||
color: #333; | ||
font-size: 0.9rem; | ||
font-weight: 100; | ||
padding-left: 20px; | ||
} | ||
} | ||
|
||
.description { | ||
|
||
font-size: 1rem !important; | ||
font-weight: 100 !important; | ||
padding-bottom: 10px; | ||
} | ||
} | ||
.description { | ||
font-size: 1rem !important; | ||
font-weight: 100 !important; | ||
padding-bottom: 10px; | ||
} | ||
} |
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
Oops, something went wrong.