Skip to content

Commit ec3612e

Browse files
authored
Merge pull request #471 from rhamilto/issue-470
Fixing bug where services with long names were getting clipped
2 parents 9e4ceb2 + afb45ae commit ec3612e

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

dist/less/services-view.less

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,14 @@ services-view,
152152
display: flex;
153153
flex: 1 1 auto;
154154
flex-wrap: wrap;
155-
padding: 15px (@grid-gutter-width / 2) 12px;
155+
margin: 15px (@grid-gutter-width / 2) 12px;
156+
padding: 0;
156157
position: relative;
157158
.services-items {
158-
left: (@grid-gutter-width / 2);
159+
left: 0;
159160
margin: 10px 0;
160161
position: absolute;
161-
right: (@grid-gutter-width / 2);
162+
right: 0;
162163
}
163164
}
164165

dist/origin-web-catalogs.css

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/styles/services-view.less

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,14 @@ services-view,
152152
display: flex;
153153
flex: 1 1 auto;
154154
flex-wrap: wrap;
155-
padding: 15px (@grid-gutter-width / 2) 12px;
155+
margin: 15px (@grid-gutter-width / 2) 12px;
156+
padding: 0;
156157
position: relative;
157158
.services-items {
158-
left: (@grid-gutter-width / 2);
159+
left: 0;
159160
margin: 10px 0;
160161
position: absolute;
161-
right: (@grid-gutter-width / 2);
162+
right: 0;
162163
}
163164
}
164165

0 commit comments

Comments
 (0)