Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Redundant border on top of some screen sections removed 2022.4 #1658

Merged
merged 1 commit into from Jun 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -21,8 +21,8 @@ along with ORIGAM. If not, see <http://www.gnu.org/licenses/>.
@import "~@origam/styles/dist/styles/definitions";

.root {
min-height: 0px;
max-height: 0px;
min-height: 0;
max-height: 0;
flex-shrink: 0;
background: var(--background1);
padding: 0 1em 0 2em;
Expand All @@ -33,9 +33,6 @@ along with ORIGAM. If not, see <http://www.gnu.org/licenses/>.
flex-wrap: nowrap;
position: relative;
width: 100%;
border-top: 1px solid var(--background4);

border-style: solid;
border-color: var(--background3) !important;
border-width: 0 0 1px 0;

Expand Down Expand Up @@ -70,10 +67,8 @@ along with ORIGAM. If not, see <http://www.gnu.org/licenses/>.
font-weight: 700;
margin: 0 1.5em 0 0;
padding: 0;
//max-width: 50%;
text-overflow: ellipsis;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: normal;
white-space: nowrap;
}
Expand Down