-
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.
- Loading branch information
1 parent
e41531f
commit 7f25805
Showing
9 changed files
with
561 additions
and
334 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
__email__ = "[email protected]" | ||
__version__ = "0.0.1" | ||
|
||
from .widget import widget, setup_widget_observer | ||
from pyparamgui.widget import setup_widget_observer | ||
from pyparamgui.widget import widget | ||
|
||
__all__ = ['widget', 'setup_widget_observer'] | ||
__all__ = ["widget", "setup_widget_observer"] |
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,26 +1,26 @@ | ||
form { | ||
display: flex; | ||
flex-direction: column; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
.form-group { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 10px; | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 10px; | ||
} | ||
label { | ||
margin-right: 10px; | ||
color: black; | ||
width: 150px; | ||
margin-right: 10px; | ||
color: black; | ||
width: 150px; | ||
} | ||
input { | ||
flex: 1; | ||
margin: 5px 0; | ||
flex: 1; | ||
margin: 5px 0; | ||
} | ||
hr { | ||
margin: 20px 0; | ||
border: none; | ||
border-top: 1px solid #ccc; | ||
margin: 20px 0; | ||
border: none; | ||
border-top: 1px solid #ccc; | ||
} | ||
button { | ||
margin-top: 10px; | ||
} | ||
margin-top: 10px; | ||
} |
Oops, something went wrong.