Farmbot-Web-App/frontend/css/farm_designer/farm_designer_panels.scss

970 lines
17 KiB
SCSS
Raw Normal View History

2019-03-05 11:59:22 -07:00
.panel-nav,
2017-06-29 12:54:02 -06:00
.farm-designer-panels {
position: fixed;
2017-07-07 04:07:21 -06:00
top: 8.9rem;
2018-09-13 14:26:53 -06:00
width: 30rem;
2019-04-11 21:17:18 -06:00
@media screen and (max-width: 450px) {
width: 100%;
}
}
2018-04-20 20:17:50 -06:00
@keyframes panel-pullout {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(0);
}
}
.farm-designer-panels {
2017-06-29 12:54:02 -06:00
bottom: 0;
2017-07-25 10:35:21 -06:00
z-index: 1;
2019-04-11 21:17:18 -06:00
&.panel-closed {
display: none !important;
}
&.short-panel {
height: 24rem;
}
2017-06-29 12:54:02 -06:00
.panel-container {
width: 100%;
2017-09-27 15:04:46 -06:00
height: 100%;
2017-06-29 12:54:02 -06:00
overflow-x: hidden;
font-size: 1.6rem;
padding-bottom: 3rem;
label {
font-size: 1.3rem;
margin-top: 2rem;
}
}
2018-04-20 20:17:50 -06:00
div {
animation: panel-pullout 0s ease;
}
2017-06-29 12:54:02 -06:00
}
.panel-container {
overflow: hidden;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
transition: background 0.2s ease;
}
}
2017-06-29 12:54:02 -06:00
&.green-panel {
2019-04-09 19:57:46 -06:00
background-color: $panel_light_green;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_green, 10%);
}
}
2017-06-29 12:54:02 -06:00
}
&.cyan-panel {
background-color: $light_cyan;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($light_cyan, 10%);
}
}
2017-06-29 12:54:02 -06:00
}
&.brown-panel {
2019-04-09 19:57:46 -06:00
background-color: $panel_light_brown;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_brown, 10%);
}
}
2017-06-29 12:54:02 -06:00
}
&.magenta-panel {
background-color: $light_magenta;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($light_magenta, 10%);
}
}
2017-06-29 12:54:02 -06:00
}
2019-10-25 09:33:33 -06:00
&.light-gray-panel,
2018-02-20 17:13:14 -07:00
&.gray-panel {
2019-04-09 19:57:46 -06:00
background-color: $panel_light_gray;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_gray, 10%);
}
}
2019-04-09 19:57:46 -06:00
}
&.yellow-panel {
background-color: $panel_light_yellow;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_yellow, 10%);
}
}
2019-04-09 19:57:46 -06:00
}
&.blue-panel {
background-color: $panel_light_blue;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_blue, 10%);
}
}
2019-04-09 19:57:46 -06:00
}
2019-11-20 12:48:14 -07:00
&.navy-panel {
background-color: $panel_light_navy;
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_navy, 10%);
}
}
}
2019-04-09 19:57:46 -06:00
&.teal-panel {
background-color: $panel_light_teal;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_teal, 10%);
}
}
2019-04-09 19:57:46 -06:00
}
&.red-panel {
background-color: $panel_light_red;
2019-10-25 09:33:33 -06:00
div[class*="search-item"] {
&:hover,
&.hovered {
background: darken($panel_light_red, 10%);
}
}
2018-02-20 17:13:14 -07:00
}
2017-06-29 12:54:02 -06:00
}
2019-03-05 11:59:22 -07:00
.panel-nav,
2017-06-29 12:54:02 -06:00
.panel-header {
color: $light_gray;
&.green-panel {
2019-04-09 19:57:46 -06:00
background-color: $panel_green;
2017-06-29 12:54:02 -06:00
}
&.cyan-panel {
background-color: $cyan;
}
&.brown-panel {
2019-04-09 19:57:46 -06:00
background-color: $panel_brown;
2017-06-29 12:54:02 -06:00
}
&.magenta-panel {
background-color: $magenta;
}
&.gray-panel {
2019-10-25 04:28:58 -06:00
background-color: $panel_gray;
2019-04-09 19:57:46 -06:00
}
2019-10-25 04:37:44 -06:00
&.light-gray-panel{
background-color: $panel_medium_light_gray;
}
2019-04-09 19:57:46 -06:00
&.yellow-panel {
background-color: $panel_yellow;
}
&.blue-panel {
background-color: $panel_blue;
}
2019-11-20 12:48:14 -07:00
&.navy-panel {
background-color: $panel_navy;
}
2019-04-09 19:57:46 -06:00
&.teal-panel {
background-color: $panel_teal;
}
&.red-panel {
background-color: $panel_red;
2017-06-29 12:54:02 -06:00
}
}
.panel-tabs {
display: flex;
2019-04-09 19:57:46 -06:00
img {
filter: brightness(0%) invert(100%);
opacity: 0.8;
}
2017-06-29 12:54:02 -06:00
a {
2018-09-13 14:26:53 -06:00
display: block;
2017-06-29 12:54:02 -06:00
flex: 1;
text-align: center;
text-transform: uppercase;
font-size: 1.4rem;
line-height: 5rem;
height: 5rem;
color: $light_gray;
&.active {
border-bottom: 3px solid $white;
font-weight: bold;
color: $white;
2019-04-09 19:57:46 -06:00
img {
opacity: 1;
}
2017-06-29 12:54:02 -06:00
}
&:hover {
color: $off_white;
text-decoration: none;
font-weight: bold;
}
&:focus {
color: $off_white;
text-decoration: none;
font-weight: bold;
}
}
}
.panel-title {
height: 50px;
.back-arrow {
2019-10-25 04:05:18 -06:00
&.black-text{
color: $medium_gray;
}
2019-04-11 21:17:18 -06:00
float: left;
text-align: center;
2017-06-29 12:54:02 -06:00
font-size: 1.8rem;
2019-04-11 21:17:18 -06:00
width: 50px;
line-height: 50px;
2017-06-29 12:54:02 -06:00
&:hover {
2019-10-25 04:05:18 -06:00
&.black-text{
color: $darker_gray !important;
}
&.white-text{
color: $white;
}
2017-06-29 12:54:02 -06:00
}
}
.title {
2019-04-11 21:17:18 -06:00
float: left;
2017-06-29 12:54:02 -06:00
font-size: 1.8rem;
white-space: nowrap;
2019-04-11 21:17:18 -06:00
width: 50%;
2017-06-29 12:54:02 -06:00
overflow: hidden;
text-overflow: ellipsis;
2019-04-11 21:17:18 -06:00
line-height: 50px;
2017-06-29 12:54:02 -06:00
}
.right-button {
2019-04-11 21:17:18 -06:00
position: absolute;
right: 0;
2017-06-29 12:54:02 -06:00
float: right;
text-transform: uppercase;
font-size: 1rem;
border: 1px solid;
padding: 0.4rem 1.2rem;
font-weight: bold;
letter-spacing: 1px;
border-radius: 4px;
color: $off_white;
2019-04-11 21:17:18 -06:00
margin-top: 1.25rem;
margin-right: 1.5rem;
2017-06-29 12:54:02 -06:00
&:hover {
color: $white;
}
}
button {
2017-09-20 03:15:45 -06:00
margin-left: 4px;
}
2017-06-29 12:54:02 -06:00
}
.white-text{
color: $off_white;
}
.black-text{
color: $black;
}
2019-08-23 15:18:28 -06:00
.point-inventory-panel,
2017-06-29 12:54:02 -06:00
.plant-inventory-panel {
.panel-content {
padding: 0;
max-height: calc(100vh - 19rem);
overflow-y: auto;
overflow-x: hidden;
2019-06-14 16:59:11 -06:00
padding-bottom: 5rem;
2017-06-29 12:54:02 -06:00
}
}
.plant-selection-panel {
.panel-action-buttons {
position: absolute;
z-index: 9;
width: 100%;
2019-10-25 04:05:18 -06:00
background: $panel_medium_light_gray;
padding: 0.5rem;
button {
margin: 0.5rem;
2019-10-25 04:05:18 -06:00
float: left;
}
label {
min-width: -webkit-fill-available;
margin-bottom: 0px;
margin-left: .5rem;
}
2019-12-30 13:13:23 -07:00
.button-row {
float: left;
width: 100%;
}
.plant-status-bulk-update {
display: inline-flex;
width: 100%;
margin-left: 1rem;
.filter-search {
margin-left: 0.5rem;
}
p {
font-size: 1.2rem;
line-height: 4.1rem;
}
}
2018-10-25 18:02:54 -06:00
}
.panel-content {
2019-12-30 13:13:23 -07:00
padding-top: 15rem;
2018-01-29 23:29:16 -07:00
padding-right: 0;
padding-left: 0;
2019-06-14 16:59:11 -06:00
padding-bottom: 5rem;
2019-10-25 04:05:18 -06:00
max-height: calc(100vh - 13rem);
2018-01-29 23:29:16 -07:00
overflow-y: auto;
overflow-x: hidden;
2019-10-09 06:55:30 -06:00
.plant-search-item,
.group-search-item { pointer-events: none; }
}
}
2019-11-07 12:17:50 -07:00
.weed-info-panel,
.point-info-panel,
2019-06-21 15:43:46 -06:00
.plant-info-panel {
.panel-content {
max-height: calc(100vh - 14rem);
overflow-y: auto;
overflow-x: hidden;
padding-bottom: 5rem;
}
}
2018-02-20 17:13:14 -07:00
.point-creation-panel {
.panel-content {
2019-11-20 12:48:55 -07:00
ul {
margin-bottom: 0;
}
margin-top: 1rem;
label {
margin-top: 0;
}
p {
margin-top: 1rem;
2018-02-20 17:13:14 -07:00
}
.fb-button {
2019-11-20 12:48:55 -07:00
&.green {
margin-right: 1.5rem;
}
2018-02-20 17:13:14 -07:00
&.delete {
float: left;
2019-11-20 12:48:55 -07:00
margin-top: 1rem;
2018-02-20 17:13:14 -07:00
}
}
.saucer {
2019-11-20 12:48:55 -07:00
margin: 1rem;
margin-left: 2rem;
2018-02-20 17:13:14 -07:00
}
.delete-row {
2019-11-20 12:48:55 -07:00
margin: 1.5rem;
2018-02-20 17:13:14 -07:00
}
}
}
2019-11-07 12:17:50 -07:00
.weed-info-panel-content,
.point-info-panel-content {
.saucer {
margin: 1rem;
margin-left: 2rem;
}
2019-11-20 12:48:55 -07:00
.fb-button & .red {
2019-11-07 12:17:50 -07:00
display: block;
margin-top: 3rem;
}
p {
margin-top: 1rem;
}
}
2017-06-29 12:54:02 -06:00
.crop-catalog-panel {
.panel-content {
padding: 1rem 1rem 6rem;
2017-06-29 12:54:02 -06:00
}
}
.panel-top {
2019-03-05 11:59:22 -07:00
&.with-button {
display: flex;
margin-top: 5rem;
2019-04-11 21:17:18 -06:00
.fb-button {
2019-03-05 11:59:22 -07:00
margin: 1rem;
2019-04-11 21:17:18 -06:00
margin-left: 0;
}
a {
margin-top: 0.5rem;
}
2019-12-24 12:38:45 -07:00
i:not(.fa-stack-2x) {
2019-04-11 21:17:18 -06:00
font-size: 1.5rem;
2019-03-05 11:59:22 -07:00
}
}
}
2017-06-29 12:54:02 -06:00
.panel-content {
2019-03-05 11:59:22 -07:00
padding: 0 1rem;
2017-06-29 12:54:02 -06:00
a {
color: $black;
text-decoration: underline !important;
}
}
2020-01-09 16:36:49 -07:00
.edit-farm-event-panel,
2017-06-29 12:54:02 -06:00
.add-farm-event-panel {
input {
2019-01-14 21:49:09 -07:00
background: $white;
}
2019-04-11 21:17:18 -06:00
.save-btn {
2019-04-09 23:44:58 -06:00
margin: 1rem;
}
2019-06-04 16:07:24 -06:00
.location-form {
width: 100% !important;
}
2020-01-03 13:17:56 -07:00
.note {
margin-top: 4rem;
}
.bp3-popover-wrapper {
display: inline;
margin-left: 0.5rem;
}
}
.farm-event-form {
.farm-event-repeat-options {
input[type=checkbox] {
margin-right: 0.5rem;
margin-top: 0;
vertical-align: middle;
}
.farm-event-repeat-form {
.add-event-repeat-frequency {
min-height: 34px;
}
}
}
2017-06-29 12:54:02 -06:00
}
.add-farm-event-panel button.red,
2020-01-03 13:17:56 -07:00
.edit-farm-event-panel button.red {
2017-06-29 12:54:02 -06:00
margin-top: 1rem;
margin-left: 1rem;
2020-01-09 16:36:49 -07:00
margin-right: 0.5rem;
2017-09-06 03:13:07 -06:00
}
2017-10-04 02:09:55 -06:00
2019-03-05 11:59:22 -07:00
.panel-nav {
2017-12-19 17:21:35 -07:00
position: fixed;
2018-04-20 20:17:50 -06:00
z-index: 2;
2019-03-05 11:59:22 -07:00
}
.panel-header {
2017-12-20 15:51:55 -07:00
.panel-header-description,
.crop-info-description {
font-size: 1.2rem;
padding: 0 1.4rem 1rem;
}
.crop-info-description {
2017-12-19 17:21:35 -07:00
max-height: 10rem;
overflow-y: auto;
overflow-x: hidden;
}
}
.crop-info-panel {
.panel-header {
2018-09-13 14:26:53 -06:00
position: inherit;
2017-12-19 17:21:35 -07:00
background-size: 144% !important;
background-repeat: no-repeat !important;
background-position: top center !important;
}
.panel-content {
max-height: calc(100vh - 19rem);
overflow-y: auto;
overflow-x: hidden;
padding: 2rem 1rem 6rem;
2019-06-14 16:59:11 -06:00
padding-bottom: 10rem;
2017-12-19 17:21:35 -07:00
li {
margin-bottom: 1rem;
p {
font-size: 1.25rem;
}
}
}
2018-12-03 20:05:45 -07:00
.edit-on-openfarm {
margin-bottom: 1rem;
}
2017-12-19 17:21:35 -07:00
}
2019-01-13 18:41:23 -07:00
.plants-panel-content {
li {
margin-top: 1rem;
p {
font-size: 1.25rem;
}
}
2019-01-14 21:49:09 -07:00
input {
background: $white;
}
2019-01-13 18:41:23 -07:00
}
2019-04-11 21:17:18 -06:00
.add-plant-panel,
.move-to-panel {
padding-bottom: 0 !important;
}
.add-plant-panel {
.panel-header {
height: 100%;
}
}
.move-to-panel-content {
2019-11-20 12:51:32 -07:00
margin-top: 1rem;
margin-left: 1rem;
margin-right: 1rem;
button {
margin: 1rem;
margin-left: 2rem;
width: 88%;
float: left;
}
input {
min-width: 7rem;
}
}
2018-08-01 18:13:44 -06:00
2019-12-30 09:08:48 -07:00
.tool-slots-panel,
.tools-panel {
.panel-top {
display: flex;
margin-top: 5rem;
}
.tool-slots-panel-content,
.tools-panel-content {
2020-02-24 09:55:57 -07:00
max-height: calc(100vh - 19rem);
2020-02-20 19:38:50 -07:00
overflow-y: auto;
overflow-x: hidden;
2019-12-30 09:08:48 -07:00
.tool-search-item,
.tool-slot-search-item {
2020-02-20 19:38:50 -07:00
line-height: 4rem;
2019-12-30 09:08:48 -07:00
cursor: pointer;
margin-left: -15px;
margin-right: -15px;
.row {
margin-left: 0;
margin-right: 0;
}
p {
2020-02-20 19:38:50 -07:00
font-size: 1.2rem;
line-height: 4rem;
&.tool-status,
2019-12-30 13:14:15 -07:00
&.tool-slot-position {
float: right;
}
2019-12-30 09:08:48 -07:00
}
2020-02-20 19:38:50 -07:00
.filter-search {
.bp3-button {
min-height: 2.5rem;
max-height: 2.5rem;
span {
line-height: 1.5rem;
}
}
i {
2020-02-24 09:55:57 -07:00
line-height: 2rem;
2020-02-20 19:38:50 -07:00
}
}
svg {
vertical-align: middle;
}
.tool-slot-position-info {
padding: 0;
padding-right: 1rem;
}
2019-12-30 09:08:48 -07:00
}
.mounted-tool-header {
display: flex;
margin-top: 1rem;
label {
margin: 0;
}
.help-icon {
margin-left: 1rem;
vertical-align: top;
font-size: 1.4rem;
}
}
2020-02-15 11:29:31 -07:00
.tools-header,
2019-12-30 09:08:48 -07:00
.tool-slots-header {
display: flex;
margin-top: 1rem;
margin-bottom: 1rem;
label {
margin: 0;
line-height: 2.1rem;
}
a {
margin-left: auto;
}
.fa-plus {
font-size: 1.5rem;
}
}
button:not(.bp3-button) {
display: block;
margin-left: auto;
float: none;
margin-top: 1rem;
}
.tool-verification-status {
display: flex;
margin-top: 1rem;
margin-bottom: 2rem;
button {
margin-top: 0;
}
}
}
}
.add-tool-panel-content,
.edit-tool-panel-content {
2019-08-23 15:18:28 -06:00
button {
2019-12-30 09:08:48 -07:00
display: block;
margin-left: auto;
float: none;
2019-08-23 15:18:28 -06:00
margin-top: 1rem;
2019-12-30 09:08:48 -07:00
&.red {
float: left;
}
}
2020-02-20 19:38:50 -07:00
svg {
display: block;
margin: auto;
width: 10rem;
height: 10rem;
margin-top: 2rem;
}
2019-12-30 09:08:48 -07:00
.add-stock-tools {
2020-02-15 11:29:31 -07:00
.filter-search {
margin-bottom: 1rem;
button {
margin-top: 0.2rem;
}
}
2019-12-30 09:08:48 -07:00
ul {
font-size: 1.2rem;
padding-left: 1rem;
2020-02-20 19:38:50 -07:00
li {
margin-top: 0.5rem;
line-height: 2rem;
cursor: pointer;
width: 50%;
&:hover {
font-weight: bold;
}
.fb-checkbox {
display: inline;
}
p {
display: inline;
line-height: 2.25rem;
font-size: 1.2rem;
vertical-align: top;
margin-left: 1rem;
}
}
2019-12-30 09:08:48 -07:00
}
button {
.fa-plus {
margin-right: 0.5rem;
}
}
}
}
.add-tool-slot-panel-content,
.edit-tool-slot-panel-content {
2020-02-20 19:38:50 -07:00
svg {
display: block;
margin: auto;
width: 10rem;
height: 10rem;
margin-top: 2rem;
}
2019-12-30 09:08:48 -07:00
label {
margin-top: 0 !important;
}
.row, fieldset {
margin-top: 2rem;
}
fieldset button {
margin: 0;
}
.direction-icon {
margin-left: 1rem;
}
2020-02-20 19:38:50 -07:00
.help-icon {
color: $dark_gray;
}
.tool-slot-location-input {
.axis-inputs {
padding-left: 0;
}
.use-current-location {
padding: 0;
margin-left: -1rem;
}
2019-12-30 09:08:48 -07:00
button {
2020-02-20 19:38:50 -07:00
margin-top: 0.5rem;
margin-right: 0.5rem;
height: 2.5rem;
.fa {
font-size: 1.5rem;
}
2019-12-30 09:08:48 -07:00
}
}
.gantry-mounted-input {
label {
margin-top: 0;
}
input[type="checkbox"] {
float: left;
margin-right: 1rem;
}
2019-08-23 15:18:28 -06:00
}
}
2019-06-10 15:43:11 -06:00
.settings-panel-content {
2019-06-14 16:59:11 -06:00
max-height: calc(100vh - 15rem);
overflow-y: auto;
overflow-x: hidden;
2019-06-10 15:43:11 -06:00
margin-top: 5rem;
2019-06-14 16:59:11 -06:00
padding-bottom: 5rem;
2019-06-10 15:43:11 -06:00
button {
margin-top: 1.75rem;
}
p {
2019-06-14 16:59:11 -06:00
padding: 0.5rem;
2019-06-10 15:43:11 -06:00
margin-left: 1rem;
2019-06-14 16:59:11 -06:00
margin-right: 1rem;
2019-06-10 15:43:11 -06:00
}
.map-size-inputs {
.row {
margin-bottom: 1rem;
}
label {
margin-top: 0.5rem;
}
}
2019-06-21 15:43:46 -06:00
.designer-setting {
&.disabled {
input {
background: $gray;
}
}
}
2019-06-10 15:43:11 -06:00
}
2018-08-01 18:13:44 -06:00
.saved-garden-panel-content {
2019-11-06 10:01:05 -07:00
padding: 0;
2018-08-01 18:13:44 -06:00
.row {
2019-11-20 12:48:14 -07:00
margin: 0;
2018-08-01 18:13:44 -06:00
margin-top: 1rem;
2019-11-20 12:48:14 -07:00
margin-left: 1rem;
margin-right: 1rem;
2018-08-01 18:13:44 -06:00
}
hr {
width: 100%;
padding-top: 1rem;
}
button {
margin-left: 0.5rem;
&.wide {
margin: 1rem;
margin-left: 2rem;
width: 88%;
float: left;
}
}
input {
min-width: 7rem;
}
}
2019-10-25 04:28:58 -06:00
.weeds-inventory-panel,
.zones-inventory-panel,
.group-detail-panel,
.groups-panel {
.panel-content {
max-height: calc(100vh - 19rem);
overflow-y: auto;
overflow-x: hidden;
padding-bottom: 5rem;
}
}
2020-02-07 16:05:16 -07:00
.group-detail-panel {
.panel-content {
.group-criteria {
margin-top: 1rem;
.criteria-heading {
margin-top: 0;
}
.fb-button {
margin-top: 0.5rem;
}
.group-criteria-presets {
input[type="radio"] {
width: auto;
margin-right: 1rem;
}
p {
display: inline;
text-transform: uppercase;
}
}
.criteria-string,
.criteria-pointer-type,
.criteria-plant-status,
.criteria-slug {
margin-top: 1rem;
}
.location-criteria {
.row {
margin-top: 1rem;
p {
font-size: 1.4rem;
font-weight: bold;
}
label {
margin-top: 0;
}
}
}
.day-criteria {
p {
display: inline;
vertical-align: bottom;
}
}
.string-eq-criteria {
margin-top: 1rem;
.row {
margin-top: 1rem;
}
}
.number-eq-criteria,
.number-gt-lt-criteria {
margin-top: 1rem;
.row {
margin-top: 1rem;
}
p {
text-align: center;
margin-top: 0.5rem;
}
}
.expandable-header {
margin-top: 3rem;
}
}
.criteria-point-count-breakdown {
margin-bottom: 1rem;
.manual-group-member-count,
.criteria-group-member-count {
margin-left: 2rem;
div {
display: inline;
padding: 0.25rem;
font-size: 1.2rem;
border: 1px solid $panel_light_blue;
}
p {
display: inline;
margin-left: 1rem;
}
}
.criteria-group-member-count {
div {
border: 1px solid gray;
border-radius: 5px;
}
}
}
}
}
.zone-info-panel {
.panel-content {
.location-criteria {
.row {
margin-top: 1rem;
p {
font-size: 1.4rem;
font-weight: bold;
}
label {
margin-top: 0;
}
}
}
}
}
2019-10-25 04:28:58 -06:00
.weeds-inventory-panel,
.zones-inventory-panel,
.groups-panel {
.panel-content {
padding: 0;
}
}
2019-11-06 10:01:05 -07:00
.saved-garden-edit-panel-content {
button {
margin-left: 0.5rem;
margin-top: 1rem;
}
p {
font-size: 1.2rem;
text-align: center;
padding: 3rem;
}
2019-11-20 12:48:14 -07:00
.row {
margin: 0;
}
2019-11-06 10:01:05 -07:00
}
2020-02-28 09:34:28 -07:00
.preview-button,
.cancel-button,
.save-button {
2019-11-15 09:51:23 -07:00
text-transform: uppercase;
font-size: 1rem;
border: 1px solid;
padding: 0.4rem 1.2rem;
font-weight: bold;
letter-spacing: 1px;
border-radius: 4px;
color: $off_white;
margin-top: 1.25rem;
margin-right: 1.5rem;
&:hover { color: $white; }
}
2020-02-26 11:10:59 -07:00
.desktop-hide {
display: none !important;
@media screen and (max-width: 1075px) {
display: block !important;
}
}