Skip to content

Commit 4f24fdf

Browse files
authored
Merge pull request #18 from Chronos2-0/ousman/fixTextOverflow
fixed button text over flow, repaired partioning background
2 parents a71596d + 8a2f882 commit 4f24fdf

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
.eslintrc.js
3-
package-lock.json
3+
package-lock.json
4+
settings.json
5+
.DS_Store

app/index.css

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
html {
2+
/* prevent the gradient from repeating past the visible section*/
3+
min-height: 100%
4+
}
5+
16
body {
2-
background-color: #333;
3-
background: rgb(25,0,36);
4-
background: linear-gradient(135deg, rgba(25,0,36,1) 0%, rgb(68, 68, 68) 0%, rgb(29, 29, 29) 100%);
7+
/* background-color: #333; Original background*/
8+
background: linear-gradient(135deg, rgba(25,0,36,1) 0%, rgb(68, 68, 68) 0%, rgb(29, 29, 29) 100%);
59
}
610

711
img {
@@ -44,9 +48,12 @@ img {
4448
}
4549

4650
.servicesBtn {
47-
background-color: rgb(255, 206, 9);
48-
width: 100px;
51+
background-color: rgb(255, 206, 9);
52+
width: 13em;
53+
word-wrap: break-word;
4954
font-size: 13px;
55+
text-align: center;
56+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
5057
border: none;
5158
height: 50px;
5259
transition: 0.2s;

0 commit comments

Comments
 (0)