deepsh2207 commited on
Commit
befd576
·
1 Parent(s): a606142

Removed extra styling from footer

Browse files
Files changed (1) hide show
  1. app.py +13 -13
app.py CHANGED
@@ -138,19 +138,18 @@ if __name__ == "__main__":
138
  # st.markdown("Used Github Actions to automatically build the app on any updates on this [github repo link](https://github.com/deepanshu2207/imgtotxt_using_DocTR)")
139
  # st.caption("Made with ❤️ by Deepanshu. Credits to 🤗 Spaces for Hosting this.")
140
 
 
 
 
 
 
 
 
 
 
 
 
141
  footer="""<style>
142
- a:link , a:visited{
143
- color: blue;
144
- background-color: transparent;
145
- text-decoration: underline;
146
- }
147
-
148
- a:hover, a:active {
149
- color: red;
150
- background-color: transparent;
151
- text-decoration: underline;
152
- }
153
-
154
  .footer {
155
  position: fixed;
156
  left: 0;
@@ -162,7 +161,8 @@ if __name__ == "__main__":
162
  }
163
  </style>
164
  <div class="footer">
165
- <p>Made with ❤️ by Deepanshu. Credits to 🤗 Spaces for Hosting this. Used Github Actions to automatically build the app on any updates on this <a style='display: block; text-align: center;' href="https://github.com/deepanshu2207/imgtotxt_using_DocTR" target="_blank">github repo link</a></p>
 
166
  </div>
167
  """
168
  st.markdown(footer,unsafe_allow_html=True)
 
138
  # st.markdown("Used Github Actions to automatically build the app on any updates on this [github repo link](https://github.com/deepanshu2207/imgtotxt_using_DocTR)")
139
  # st.caption("Made with ❤️ by Deepanshu. Credits to 🤗 Spaces for Hosting this.")
140
 
141
+ # a:link , a:visited{
142
+ # color: blue;
143
+ # background-color: transparent;
144
+ # text-decoration: underline;
145
+ # }
146
+
147
+ # a:hover, a:active {
148
+ # color: red;
149
+ # background-color: transparent;
150
+ # text-decoration: underline;
151
+ # }
152
  footer="""<style>
 
 
 
 
 
 
 
 
 
 
 
 
153
  .footer {
154
  position: fixed;
155
  left: 0;
 
161
  }
162
  </style>
163
  <div class="footer">
164
+ <p>Made with ❤️ by Deepanshu. Credits to 🤗 Spaces for Hosting this.
165
+ Used Github Actions to automatically build the app on any updates on this <a style='display: block; text-align: center;' href="https://github.com/deepanshu2207/imgtotxt_using_DocTR" target="_blank">github repo link</a></p>
166
  </div>
167
  """
168
  st.markdown(footer,unsafe_allow_html=True)