Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GUI/Student/NewStudentPollPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class NewStudentPollPanel {
public JPanel createNewStudentPollPanel() {
// Create a title label and set its properties
JLabel titleLabel = new JLabel("Poll Participation");
titleLabel.setFont(new Font("Helvetica", Font.BOLD, 30));
titleLabel.setFont(new Font("Helvetica", Font.BOLD, 35));

JButton participateButton = new JButton("Participate");
JButton cancelButton = new JButton("Cancel");
Expand All @@ -28,7 +28,7 @@ public JPanel createNewStudentPollPanel() {
pollList = new JList<>(listModel);

// Add sample poll questions
listModel.addElement("This is great - it is working"); // Backend team, do your thing
listModel.addElement("This is great the program is working"); // Backend team, do your thing

// Create a main panel and set its layout
JPanel mainPanel = new JPanel(new BorderLayout());
Expand Down