Unknown92 commited on
Commit
92a879a
·
1 Parent(s): 98443ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -18,7 +18,8 @@ model = load_model()
18
 
19
  jd = st.text_area("Paste the Job Description:", height=600)
20
  resume = st.text_area("Paste Your the Resume:", height=600)
21
-
 
22
  if st.button("Calculate Match Score"):
23
  if jd and resume:
24
  score = calculate_similarity(model, jd, resume)
 
18
 
19
  jd = st.text_area("Paste the Job Description:", height=600)
20
  resume = st.text_area("Paste Your the Resume:", height=600)
21
+ # Increase font size using st.markdown with HTML styling
22
+ st.markdown("<style>textarea{font-size:16px !important;}</style>", unsafe_allow_html=True)
23
  if st.button("Calculate Match Score"):
24
  if jd and resume:
25
  score = calculate_similarity(model, jd, resume)