-
Notifications
You must be signed in to change notification settings - Fork 1
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
dda7109
commit f30def8
Showing
3 changed files
with
24 additions
and
2 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 |
---|---|---|
@@ -1 +1,11 @@ | ||
<p>Cool With Anything</p> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="website-styles/index.css"> | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<p class="header-title">Scheduler X</p> | ||
</div> | ||
</body> | ||
</html> |
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 |
---|---|---|
|
@@ -344,7 +344,7 @@ function SelectOthers() { | |
<TouchableOpacity style={styles.pageButton} onPress={() => Alert.alert('For support, contact us at [email protected]')}> | ||
<Text style={styles.accountText}>Support</Text> | ||
</TouchableOpacity> | ||
<TouchableOpacity style={styles.pageButton} onPress={() => Alert.alert('App Version: v0.5')}> | ||
<TouchableOpacity style={styles.pageButton} onPress={() => Alert.alert('App Version: v0.9')}> | ||
<Text style={styles.accountText}>Version</Text> | ||
</TouchableOpacity> | ||
</View> | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.header { | ||
display: flex; | ||
flex: 1; | ||
flex-direction: row; | ||
justify-content: center; | ||
} | ||
|
||
.header-title { | ||
margin-top: 5px; | ||
font-size: 30px; | ||
font-weight: 600; | ||
} |